-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 711 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open("README.md", 'r', encoding="utf-8") as file:
long_description = file.read()
setup(name='PythonBotnet',
version='0.1',
description='Simple C&C python botnet using websockets',
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/HappyStoic/PythonBotnet',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
'click==7.0',
'ptable==0.9.2',
'websockets==11.0',
],
author='Martin Řepa',
author_email='repa.martin@hotmail.com',
python_requires='>3.7',
)