-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (48 loc) · 1.42 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
44
45
46
47
48
49
from setuptools import find_packages, setup
setup(
name="ndoh-hub",
version="0.10.25",
url="http://github.com/praekeltfoundation/ndoh-hub",
license="BSD",
author="Praekelt Foundation",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Django==4.2.16",
"djangorestframework==3.15.2",
"coreapi==2.3.3",
"Markdown==3.1.1",
"dj-database-url==1.2.0",
"django-environ==0.10.0",
"psycopg2-binary==2.8.6",
"raven==6.9.0",
"django-filter==2.4.0",
"celery==5.2.3",
"six==1.11.0",
"requests==2.32.0",
"demands==3.0.0",
"structlog==18.2.0",
"phonenumberslite==8.9.15",
"django-simple-history==3.3.0",
"openpyxl==2.5.9",
"iso-639==0.4.5",
"django-prometheus==2.2.0",
"rapidpro-python==2.6.1",
"pycountry==19.8.18",
"attrs",
"iso6709==0.1.5",
"redis==4.5.4",
"django-redis==5.2.0",
"celery_batches==0.7",
"python-dateutil==2.8.2",
],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)