-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 888 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='dripconfig',
version='0.2.5',
description="configuration loading utilities for common process setup tasks",
license="",
author="Luke Tucker, James O'Beirne",
author_email="[email protected], [email protected]",
url="",
install_requires=[
"configparser>=3.3.0",
"voluptuous>=0.8.3",
"pyyaml",
"jsmin>=2.0.6"
],
extras_require={
'builtins': [
"python-statsd>=1.6.0",
"raven==1.9.1"
],
},
tests_require=[
'mock',
],
dependency_links=[],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
)