forked from greatscottgadgets/facedancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.09 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
import os
from setuptools import setup, find_packages
def read(fname):
filename = os.path.join(os.path.dirname(__file__), fname)
with open(filename, 'r') as f:
return f.read()
setup(
name='Facedancer',
version='2.0',
url='https://greatscottgadgets.com/greatfet/',
license='BSD',
scripts=['greatfet_firmware','greatfet_info'],
tests_require=[''],
install_requires=['pyusb'],
description='Python library for emulating USB devices',
long_description=read('../README.md'),
packages=find_packages(),
include_package_data=True,
platforms='any',
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',
],
extras_require={}
)