-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (26 loc) · 946 Bytes
/
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
from setuptools import find_packages, setup
with open('./README.md', 'r') as readme_file:
long_description = readme_file.read()
setup(
name='h2spacex',
version='1.2.0',
description='HTTP/2 Single Packet Attack low level library based on Scapy',
package_dir={"": "src"},
packages=find_packages(where="src"),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nxenon/h2spacex',
author='nxenon',
author_email='nasiri.aminm@gmail.com',
license='GPL-3.0',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=['scapy==2.5.0', 'brotlipy==0.7.0', 'PySocks==1.7.1'],
python_requires='>=3.8.8',
extras_requires={
'dev': 'twine==4.0.2'
},
)