-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (41 loc) · 1.35 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
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
package_data = \
{'': ['*']}
prod_dependencies = [
'aenum==3.1.15',
'certifi==2023.7.22',
'charset-normalizer==3.3.0',
'frozendict==2.3.10',
'idna==3.7',
'MarkupSafe==2.1.3',
'python-dateutil==2.8.2',
'python-dotenv==1.0.0',
'requests==2.32.0',
'typing-extensions==4.8.0',
'pyjwt==2.8.0',
'unitsnet-py>=0.1.82',
'urllib3==2.0.7',
]
setup_kwargs = {
'name': "chkp-harmony-endpoint-management-sdk",
'version': '1.1.38',
'keywords': 'python, harmony, endpoint, sdk, checkpoint',
'license': 'MIT',
'description': 'Harmony Endpoint Official Python SDK',
'long_description': long_description,
'long_description_content_type': "text/markdown",
'author': 'Haim Kastner',
'author_email': '[email protected]',
'maintainer': 'Haim Kastner',
'maintainer_email': '[email protected]',
'url': 'https://github.com/CheckPointSW/harmony-endpoint-management-py-sdk',
'packages': find_packages(exclude=['sdk_generator', 'scripts' 'tests']),
'package_data': package_data,
'install_requires': prod_dependencies,
'python_requires': '>=3.8,<4.0',
}
setup(**setup_kwargs)