This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (70 loc) · 1.94 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
import os
from setuptools import setup, find_packages
install_requires = [
'Django>=3.0',
'django-q',
'psutil',
'jsonpatch',
'mce-django-app@git+https://github.com/multi-cloud-explorer/mce-django-app.git@master#egg=mce_django_app',
'mce-lib-azure@git+https://github.com/multi-cloud-explorer/mce-lib-azure.git@master#egg=mce_lib_azure',
]
tests_requires = [
'psycopg2-binary',
'pytest>=5.4.1',
'pytest-cov',
'pytest-pep8',
'pytest-django',
'pytest-timeout',
'django-dynamic-fixture',
'pytest-instafail',
'curlify',
'factory-boy',
'bandit',
'flake8',
'coverage',
'responses',
'freezegun',
'django-environ',
'django-filter',
'django-select2',
]
dev_requires = [
'pylint',
'ipython',
'autopep8',
'black',
'wheel',
]
extras_requires = {
'tests': tests_requires,
'dev': dev_requires,
}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mce-tasks-djq',
version="0.1.0",
description='Django-Q Tasks for Multi Cloud Explorer',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/multi-cloud-explorer/mce-tasks-djq.git',
license='GPLv3+',
packages=find_packages(exclude=("tests",)),
include_package_data=False,
tests_require=tests_requires,
install_requires=install_requires,
extras_require=extras_requires,
test_suite='tests',
zip_safe=False,
author='Stephane RAULT',
author_email="[email protected]",
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
)