-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (28 loc) · 913 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
__author__ = "Jordan Ovrè <[email protected]>"
description = 'Hydrabus Framework core'
name = 'hydrabus_framework'
setup(
name=name,
version='0.0.2',
packages=find_packages(),
license='GPLv3',
description=description,
author='Ghecko',
url='https://github.com/hydrabus-framework/framework',
install_requires=[
'tabulate==0.8.3',
'prompt_toolkit==3.0.2',
'serial==0.0.97',
'pyserial==3.4',
'requests==2.22.0'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha'
],
keywords=['hydrabus', 'framework', 'hardware', 'security', 'core', 'engine'],
scripts=['hydrabus_framework/hbfconsole', 'hydrabus_framework/hbfupdate'],
)