-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (47 loc) · 1.56 KB
/
setup.py
File metadata and controls
53 lines (47 loc) · 1.56 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
#!/usr/bin/env python
# encoding: utf-8
import os
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'CheckmarxPythonSDK', '__version__.py'), 'r', 'utf-8') as f:
exec(f.read(), about)
with open("README.md", "r", 'utf-8') as fh:
long_description = fh.read()
setup(
name="CheckmarxPythonSDK",
version=about['__version__'],
author="Happy Yang",
author_email="happy.yang@checkmarx.com",
description="Checkmarx Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/checkmarx-ts/checkmarx-python-sdk",
packages=find_packages(exclude=['tests*']),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, >=3.7',
install_requires=[
"requests>=2.13.0",
"requests-toolbelt>=0.9.1",
"zeep>=4.1.0",
"Deprecated>=1.2.13",
"inflection>=0.5.1",
"typing-extensions>=3.6.2"
],
extras_require={
"dotenv": ["python-dotenv"],
"dev": [
"pytest",
"coverage"
],
},
)