forked from greatscottgadgets/python-usb-protocol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (38 loc) · 1.33 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
from setuptools import setup, find_packages
setup(
# Vitals
name='usb_protocol',
license='BSD',
url='https://github.com/usb-tool/luna',
author='Katherine J. Temkin',
author_email='[email protected]',
description='python library providing utilities, data structures, constants, parsers, and tools for working with USB data',
use_scm_version= {
"root": '..',
"relative_to": __file__,
"version_scheme": "guess-next-dev",
"local_scheme": lambda version : version.format_choice("+{node}", "+{node}.dirty"),
"fallback_version": "0.0"
},
# Imports / exports / requirements.
platforms='any',
packages=find_packages(),
include_package_data=True,
python_requires="~=3.7",
install_requires=['construct'],
setup_requires=['setuptools', 'setuptools_scm'],
# Metadata
classifiers = [
'Programming Language :: Python',
'Development Status :: 1 - Planning',
'Natural Language :: English',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Security',
],
)