-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (74 loc) · 1.81 KB
/
setup.py
File metadata and controls
83 lines (74 loc) · 1.81 KB
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
81
82
83
import os
from setuptools import setup, find_packages
install_requires = [
'python-decouple',
'python-dotenv',
'requests',
]
tests_requires = [
'pytest>=5.4.1',
'pytest-cov',
'pytest-pep8',
'pytest-vcr',
'vcrpy',
'bandit',
'flake8',
'coverage',
'responses',
'freezegun',
]
dev_requires = [
'pylint',
'ipython',
'autopep8',
'black',
]
doc_requires = [
'Sphinx>=3.0',
'sphinx_rtd_theme',
'sphinx-click',
'sphinx-autodoc-typehints'
]
extras_requires = {
'tests': tests_requires,
'dev': dev_requires,
'doc': doc_requires,
'gevent': [
'gevent',
'gevent-openssl',
]
}
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-cli',
version="0.1.0",
description='Rest Client for MCE Explorer',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/multi-cloud-explorer/mce-cli.git',
license='GPLv3+',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
tests_require=tests_requires,
install_requires=install_requires,
extras_require=extras_requires,
test_suite='tests',
zip_safe=False,
author='Stephane RAULT',
author_email="stephane.rault@radicalspam.org",
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',
],
entry_points={
'console_scripts': [
#'mce-az = mce_cli.cli:main',
],
}
)