-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·46 lines (42 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
#!/usr/bin/python
import setuptools
import os
version = {}
with open(os.path.join('stormshield', 'sns', 'sslclient', '__version__.py'), 'r') as fh:
exec(fh.read(), version)
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stormshield.sns.sslclient",
version=version['__version__'],
author="Remi Pauchet",
author_email="remi.pauchet@stormshield.eu",
description="SSL API client for Stormshield Network Security appliances",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stormshield/python-SNS-API",
license='Apache License 2.0',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ['snscli=stormshield.sns.cli:main'],
},
install_requires=[
'pygments',
'requests[socks]',
'requests_toolbelt',
'colorlog',
'defusedxml',
'packaging',
'pyreadline; platform_system == "Windows"'
],
include_package_data=True,
tests_require=["pytest"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: System :: Networking",
"Environment :: Console"
],
)