-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
29 lines (28 loc) · 952 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
from setuptools import setup
setup(
name="prison-break",
description="Free yourself from the chains of having to"
"acknowledging AGBs every time you connect to a captive portal",
version="1.5.0",
packages=["prisonbreak", "prisonbreak.plugins"],
license="MIT",
long_description=open("README.md").read(),
author="Felix Richter",
author_email="[email protected]",
install_requires=[
"requests",
"beautifulsoup4",
"docopt",
"straight.plugin"
],
entry_points={"console_scripts": ["prison-break = prisonbreak.cli:main"]},
classifiers=[
"Intended Audience :: Human",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
)