forked from demisto/demisto-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (44 loc) · 1.34 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
# 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
with open('requirements.txt') as f:
REQUIRES = f.read().splitlines()
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(),
python_requires='>=3.8',
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 :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython'
],
)