forked from mwaaas/ussd_airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (36 loc) · 990 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
37
38
from setuptools import setup, find_packages
from ussd import VERSION
setup(
name='ussd_airflow',
version=VERSION,
packages=find_packages(exclude=('ussd_airflow',)),
url='https://github.com/mwaaas/ussd_airflow',
install_requires=[
'Django>=2.2,<3.2',
'djangorestframework>=3.10,<4.0',
'structlog<21.2.0',
'jinja2<2.12',
'PyYAML>=5.1,<5.5',
'PyStaticConfiguration==0.10.5',
'requests<2.26',
'PyConfigure==0.5.9',
],
extras_require={
'test': [
'pytest-django>=3.5,<4.3',
'freezegun',
'psycopg2-binary',
'pytest-cov>=2.7,<2.12',
],
'docs': [
'sphinx>=2.2,<3.6',
'sphinx-autobuild>=0.7,<2020.10',
'sphinx_rtd_theme>=0.4,<0.6',
]
},
include_package_data=True,
license='MIT',
author='Mwas',
author_email='[email protected]',
description='Ussd Airflow Library'
)