forked from zeronetworks/cornershot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.57 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
from setuptools import setup
from codecs import open
from os import path
SCRIPT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(SCRIPT_DIR, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(SCRIPT_DIR, 'requirements.txt'), encoding='utf-8') as f:
dependencies = f.read().splitlines()
dependencies = filter(str, dependencies)
dependencies = list(dependencies)
setup(
name='cornershot',
python_requires='>=3',
version='0.2.14',
description='Library to test network connectivity',
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/zeronetworks/cornershot',
author='Sagie Dulce, Zero Networks',
author_email='[email protected]',
license='Apache v2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='cornershot zerotrust ztna zeronetworks network scanner networkscanner',
packages=['cornershot', 'cornershot.shots'],
install_requires=dependencies,
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
}
)