-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
32 lines (29 loc) · 830 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
29
30
31
32
import check_python_version
from setuptools import setup, find_packages
from ripper.constants import VERSION
with open('requirements.txt', 'r', encoding='utf-8') as f:
required = f.read().splitlines()
with open('README.md', 'r', encoding='utf-8') as md:
readme = md.read()
setup(
name='dripper',
version=VERSION,
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/alexmon1989/russia_ddos',
python_requires=">=3.9",
packages=find_packages(exclude=['tests']),
install_requires=required,
package_data={
'ripper': [
'assets/headers.txt',
'assets/useragents.txt',
],
},
entry_points={
'console_scripts': [
'dripper=ripper.services:cli',
],
},
license='MIT'
)