forked from colinoflynn/pico-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 1.11 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
from setuptools import setup
setup(
name = 'picoscope',
version = '0.4',
description = "Unofficial python wrapper for the PicoScope devices.",
author = "Colin O'Flynn, Mark Harfouche",
author_email = '[email protected], [email protected]',
license = 'BSD',
url = 'https://github.com/colinoflynn/pico-python/',
download_url='https://github.com/colinoflynn/picoscope/tarball/0.4',
packages = ['picoscope'],
# See https://PyPI.python.org/PyPI?%3Aaction=list_classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
# What does your project relate to?
keywords = 'picoscope peripherals hardware oscilloscope ATE',
install_requires = ['numpy']
)