-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (25 loc) · 1020 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
#!/usr/bin/env python
# building source distribution:
# python setup.py sdist
from setuptools import setup, find_packages
from SiLibUSB.siusbdevice import __version__
author = 'Tomasz Hemperek, Jens Janssen'
author_email = 'hemperek@uni-bonn.de, janssen@physik.uni-bonn.de'
setup(
name='pySiLibUSB',
version=__version__,
description='pySiLibUSB - SILAB USB device application programming interface',
url='https://github.com/SiLab-Bonn/pySiLibUSB',
license='BSD 3-Clause ("BSD New" or "BSD Simplified") License',
long_description='API for SILAB USB devices.',
install_requires=['pyusb>=1.0.0rc1'],
packages=find_packages(),
include_package_data=True, # accept all data files and directories matched by MANIFEST.in or found in source control
package_data={'': ['*.txt', 'VERSION'], 'examples': ['*'], 'udev': ['*']},
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
python_requires='>=2.7',
platforms='any'
)