-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 718 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 718 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
dependencies = [
"wheel",
"requests",
"argparse",
"cmd2",
"pygments",
"regex",
"dbus-python",
]
dependency_links = [
"https://github.com/calebstewart/python-networkmanager/tarball/master#egg=python-networkmanager"
]
# Setup
setup(
name="htb",
version="0.1",
description="Hack the Box Platform API",
author="Caleb Stewart",
url="https://github.com/calebstewart/python-htb",
packages=find_packages(),
package_data={"htb": []},
entry_points={"console_scripts": ["htb=htb.__main__:main"]},
install_requires=dependencies,
dependency_links=dependency_links,
)