-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 894 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
#!/usr/bin/env python
from setuptools import setup
setup(
# GETTING-STARTED: set your app name:
name='TPO',
# GETTING-STARTED: set your app version:
version='1.0',
# GETTING-STARTED: set your app description:
description='TPO App',
# GETTING-STARTED: set author name (your name):
author='Team 7',
# GETTING-STARTED: set author email (your email):
author_email='[email protected]',
# GETTING-STARTED: set author url (your url):
url='http://www.python.org/sigs/distutils-sig/',
# GETTING-STARTED: define required django version:
install_requires=[
'Django==1.9.2',
'djangorestframework==3.3.2',
'mysqlclient==1.3.6',
'django-cors-headers',
'django-filter >= 0.11.0',
'djangorestframework-filters'
],
#dependency_links=[
# 'https://pypi.python.org/simple/django/'
#],
)