forked from ocadotechnology/aimmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 783 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 783 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import versioneer
setup(
name='aimmo',
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
include_package_data=True,
install_requires=[
'django >= 1.8.3, < 1.9.0',
'django-autoconfig >= 0.3.6, < 1.0.0',
'django-forms-bootstrap',
'django-js-reverse',
'eventlet',
'flask',
'flask-socketio',
'requests',
'six',
'pykube',
'hypothesis',
'flask-cors >= 3.0, < 3.1',
'psutil >= 5.4, < 5.5',
],
tests_require=[
'django-setuptest',
'httmock',
],
test_suite='setuptest.setuptest.SetupTestSuite',
version=versioneer.get_version(),
zip_safe=False,
)