forked from photonixapp/photonix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 813 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
from setuptools import find_packages, setup
install_requires = [
'django', 'ipython', 'pillow', 'psutil', 'psycopg2-binary',
'python-redis-lock', 'requests', 'redis', 'rq', 'tensorflow', 'inotify',
'graphene-django', 'django-filter', 'pyshp', 'matplotlib', 'pytest',
'pytest-django', 'codecov', 'gunicorn', 'pip'
]
setup(
name='photonix',
version='0.2',
packages=find_packages(),
description=("WIP"),
author="Damian Moore",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=install_requires, )