forked from fake-name/PyIOTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 682 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from distutils.core import setup
setup(
name='PyIOTech',
description='Python wrapper for IOTech/Measurement-Computing data-acquisition devices.',
url='https://github.com/fake-name/PyIOTech',
packages=['PyIOTech'],
license='GPLv2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware :: Hardware Drivers',
],
)