-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 883 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 883 Bytes
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
from setuptools import setup, find_packages
long_description = 'Sophos Cli. Github is a private repo. Ping me to be added.'
setup(
name='sophosCli',
version='1.0.0',
author='Matthew Jenkins',
author_email='matt.jenkins@dataprise.com',
url='https://github.com/Matthew-Jenkins/sophosCli',
description='Cli for sophos.',
long_description=long_description,
long_description_content_type="text/markdown",
license='',
packages=find_packages(),
py_modules=['sophosCli'],
entry_points={
'console_scripts': [
'sophosCli = sophosCli:main'
]
},
classifiers=(
"Programming Language :: Python :: 3.8",
"License :: None :: Property of Dataprise",
"Operating System :: OS Independent",
),
keywords='sophos cli automation',
install_requires=['requests',],
zip_safe=False
)