forked from rogerlew/undaqTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 1.34 KB
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
# Copyright (c) 2013, Roger Lew [see LICENSE.txt]
from distutils.core import setup
setup(name='undaqTools',
version='0.2.3',
description='undaqTools is a pythonic interface to the National Advanced '\
'Driving Simulator (NADS) Data AcQuisition (DAQ) files',
author='Roger Lew',
author_email='rogerlew@gmail.com',
license = "BSD",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules"],
url='https://github.com/rogerlew/undaqTools',
packages=['undaqTools',
'undaqTools.deprecated',
'undaqTools.examples',
'undaqTools.misc',
'undaqTools.scripts',
'undaqTools.tests'],
scripts = ['undaqTools/scripts/undaq.py'])
"""C:\Python27\python.exe setup.py sdist upload --identity="Roger Lew" --sign"""