-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
25 lines (25 loc) · 1.07 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
from setuptools import setup
setup(name='pyniscope',
version='0.4.0',
packages=['niscope'],
install_requires=['numpy'],
author="Bernardo Kyotoku, John Vishnefske",
author_email="[email protected]",
description="Python wrapper for NI Oscilloscopes",
url="https://github.com/bernardokyotoku/pyniscope",
long_description=open("README.rst").read(),
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
],
)