forked from demisto/demisto-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (48 loc) · 1.36 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
# coding: utf-8
"""
Demisto API
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "demisto-py"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"certifi>=2017.4.17",
"python-dateutil>=2.5.3",
"six>=1.10",
"urllib3>=1.23",
"tzlocal>=2.0.0",
]
with open('README.md', 'r') as f:
readme = f.read()
setup(
use_scm_version={
'local_scheme': lambda a: ""
},
setup_requires=['setuptools_scm'],
name=NAME,
description="A Python library for the Demisto API",
author_email="",
url="https://github.com/demisto/demisto-py",
keywords=["Swagger", "Demisto API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description=readme,
long_description_content_type='text/markdown',
license='Apache Software License',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'
],
)