forked from OpenAgricultureFoundation/gro-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (54 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
from setuptools import setup, find_packages
readme = open('README.rst', 'r')
README_TEXT = readme.read()
readme.close()
dev_reqs = [
'django-debug-toolbar==1.3.2',
'django-extensions==1.5.5',
]
setup(
name = "gro_api",
version = "0.1.1a0",
packages = find_packages(),
package_data = {
'gro_api.layout.schemata': ['*.yaml'],
'gro_api.farms.fixtures': ['*.json'],
'gro_api.resources.fixtures': ['*.json'],
'gro_api.sensors.fixtures': ['*.json'],
'gro_api.actuators.fixtures': ['*.json'],
'gro_api.control.fixtures': ['*.json'],
},
entry_points = {
'console_scripts': [
'gro_api_configure = gro_api.scripts.configure:configure',
'gro_api_load_env = gro_api.scripts.load_env:load_env',
'gro_api_call_command = gro_api.scripts.call_command:call_command',
],
},
install_requires = [
'awesome-slugify==1.6.5',
'Django==1.8.4',
'django-allauth==0.23.0',
'django-cors-headers==1.1.0',
'django-cron==0.4.3',
'django-filter==0.11.0',
'django-rest-auth==0.5.0',
'django-rest-swagger==0.3.4',
'django-solo==1.1.0',
'djangorestframework==3.2.2',
'PyYAML==3.11',
'tortilla==0.4.1',
'voluptuous==0.8.7',
],
tests_require = dev_reqs,
extras_require = {
'dev': dev_reqs
},
test_suite = 'gro_api.scripts.runtests.runtests',
# Metadata for PyPI
long_description = README_TEXT,
author = "Douglas Chambers",
author_email = "[email protected]",
license = "GPL",
)