-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (38 loc) · 1.17 KB
/
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
37
38
39
40
41
42
43
import os
from setuptools import setup
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='zc_common',
version='0.4.18',
description="Shared code for ZeroCater microservices",
long_description='',
keywords='zerocater python util',
author='ZeroCater',
author_email='tech@zerocater.com',
url='https://github.com/ZeroCater/zc_common',
download_url='https://github.com/ZeroCater/zc_common/tarball/0.4.17',
license='MIT',
packages=get_packages('zc_common'),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=[
'python-dateutil>=2.6.1',
'ujson>=1.35,<1.36',
'PyJWT>=1.6.4',
'inflection>=0.3.1',
'pytz>=2014.2',
'python-dateutil>=2.7.3',
'django-filter>=22.1',
]
)