-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.61 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (48 loc) · 1.61 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
#!/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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
"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.9',
install_requires=[
"httpx>=0.28.1",
"suds-community>=1.2.0",
"Deprecated>=1.2.13,<1.3",
"inflection>=0.5.1"
],
extras_require={
"dotenv": ["python-dotenv"],
"dev": [
"pytest",
"coverage"
],
},
)