-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 724 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 724 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
31
32
33
from setuptools import setup
import os
import codecs
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
setup(
name='portest',
version='2.0.0',
author=['HavivV', 'nikosokolik'],
author_email=['HavivV1305@gmail.com', 'nikolaysok@gmail.com'],
license='LICENSE',
platforms='linux',
description='portest',
long_description=read('README.md'),
packages=['.',
],
include_package_data=True,
entry_points={
'console_scripts': [
'portest = portest:main',
]
},
install_requires=[
"scapy",
]
)