-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__authors__ = "Jordan Ovrè, Paul Duncan"
__copyright__ = "Copyright (c) ImmunIT - Jordan Ovrè / Paul Duncan"
__license__ = "Apache 2.0"
__version__ = "1.0.6"
__contact__ = "Jordan Ovrè / Ghecko <[email protected]>, Paul Duncan / Eresse <[email protected]>"
description = 'Octowire library'
name = 'octowire-lib'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=name,
version=__version__,
packages=find_packages(),
license=__license__,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author=__authors__,
zip_safe=True,
url='https://github.com/immunIT/octowire-lib/',
download_url='https://github.com/immunIT/octowire-lib/archive/1.0.2.tar.gz',
install_requires=[
'pyserial>=3.4,<4',
'beautifultable==1.0.0',
'colorama; platform_system == "Windows"'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable'
],
keywords=['octowire', 'library', 'hardware', 'security', 'pentest'],
python_requires='>=3.7',
)