forked from torfbolt/PyDAQFlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.16 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
from gitversion import get_version
setup(
name='pydaqflex',
version=get_version(),
description='Python port of the Measurement Computing DAQFlex framework',
author='David Kiliani',
author_email='[email protected]',
url='https://github.com/torfbolt/PyDAQFlex',
packages=['daqflex'],
package_data={'daqflex': ['firmware/*.rbf']},
long_description=open('README.rst', 'rt').read(),
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='mmc daqflex measurement computing usb driver',
license='BSD',
install_requires=[
'setuptools',
'pyusb',
],
)