-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
48 lines (45 loc) · 1.67 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = ['jsonschema[format_nongpl]==3.2.0', 'pyyaml>=5.4.1', 'requests>=2.18', 'urllib3<2', 'jsonmerge>=1.8.0']
setup(
name='alertlogic-sdk-definitions',
use_scm_version=True,
setup_requires=['setuptools_scm'],
url='https://github.com/alertlogic/alertlogic-sdk-definitions',
license='MIT license',
author='Alert Logic Inc.',
author_email='[email protected]',
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
description='The Alert Logic API definitions.',
long_description=readme,
long_description_content_type='text/markdown',
scripts=[],
# yeah yeah i know, circular dependency, but we need it for test now, later i'll think how to decouple
# definitions parsing/loading and client
tests_require=requirements,
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'troubleshooting']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=requirements,
extras_require={
'dev': [
'pytest>=3',
'mock>=2.0.0',
'httpretty>=0.8.14',
'pycodestyle>=2.3.1',
'jsonmerge>=1.8.0'
],
},
keywords=['alcli', 'almdr', 'alsdkdefs', 'alertlogic', 'alertlogic-cli']
)