-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.25 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
from setuptools import find_packages, setup
setup(
name="rp-sidekick",
version="1.12.0",
url="http://github.com/praekeltfoundation/rp-sidekick",
license="BSD",
author="Praekelt Foundation",
author_email="dev@praekeltfoundation.org",
packages=find_packages(),
include_package_data=True,
install_requires=[
"celery==5.2.3",
"Django==4.2.16",
"django-environ==0.4.5",
"django-extensions==3.1.5",
"django-phonenumber-field==3.0.1",
"django-prometheus==2.2.0",
"djangorestframework==3.15.2",
"json2html==1.3.0",
"phonenumbers==8.13.45",
"psycopg2-binary==2.8.6",
"rapidpro-python==2.6.1",
"redis==4.5.4",
"whitenoise==4.1.4",
"raven==6.10.0",
"hashids==1.3.1",
"django-filter==2.4.0",
"sentry-sdk==2.8.0",
"dj-database-url==0.5.0",
"boto3",
"jsonschema==4.21.1",
],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)