-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (28 loc) · 920 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="autorop",
version="0.0.0",
author="Mariusz Skoneczko",
author_email="[email protected]",
description="CTF pwn challenge automation framework",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/mariuszskon/autorop",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
packages=find_packages(),
entry_points={"console_scripts": ["autorop=autorop.cli:main"]},
python_requires=">=3.6.0",
install_requires=[
"pwntools",
"dataclasses>='0.7';python_version<'3.7'",
"typing-extensions",
],
)