This repository has been archived by the owner on Feb 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
80 lines (75 loc) · 2.1 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
from setuptools import setup, find_packages
from waldur_core.core.test_runner import Test
dev_requires = [
'Sphinx==1.2.2',
]
tests_requires = [
'ddt>=1.0.0,<1.1.0',
'factory_boy==2.4.1',
'freezegun==0.3.7',
'mock>=1.0.1',
'mock-django==0.6.9',
'six>=1.9.0',
'sqlalchemy>=1.0.12',
]
install_requires = [
'Celery==4.1.0',
'croniter>=0.3.4,<0.3.6',
'cryptography',
'Django>=1.11,<2.0',
'django-admin-tools==0.8.0',
'django-defender>=0.5.3',
'django-filter==1.0.2',
'django-fluent-dashboard==0.6.1',
'django-fsm==2.3.0',
'django-jsoneditor>=0.0.7',
'django-model-utils==3.0.0',
'django-redis-cache>=1.6.5',
'django-reversion==2.0.8',
'django-rest-swagger==2.1.2',
'django-taggit>=0.20.2',
'djangorestframework>=3.6.3,<3.7.0',
'elasticsearch==5.4.0',
'hiredis>=0.2.0',
'iptools>=0.6.1',
'PrettyTable<0.8,>=0.7.1',
'Pillow>=2.0.0',
'psycopg2>=2.5.4', # https://docs.djangoproject.com/en/1.11/ref/databases/#postgresql-notes
'PyYAML>=3.10',
'pycountry>=1.20,<2.0',
'pyvat>=1.3.1,<2.0',
'redis==2.10.6',
'requests>=2.6.0,!=2.12.2,!=2.13.0',
'sqlparse>=0.1.11',
]
setup(
name='waldur_core',
version='0.161.4',
author='OpenNode Team',
author_email='[email protected]',
url='https://github.com/opennode/waldur-core',
description='Waldur core is a core of Waldur cloud management service.',
long_description=open('README.rst').read(),
packages=find_packages(),
install_requires=install_requires,
extras_require={
'dev': dev_requires,
'tests': tests_requires,
},
entry_points={
'console_scripts': (
'waldur = waldur_core.server.manage:main',
),
},
tests_require=tests_requires,
cmdclass={'test': Test},
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)