-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
35 lines (30 loc) · 1.24 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
from setuptools import setup
import versioneer
with open('README.md') as readme_file:
long_description = readme_file.read()
setup(
name='picoscope',
version=versioneer.get_version(),
description="Unofficial python wrapper for the PicoScope devices.",
long_description=long_description,
long_description_content_type='text/markdown',
author="Colin O'Flynn, Mark Harfouche",
author_email='[email protected], [email protected]',
license='BSD',
url='https://github.com/colinoflynn/pico-python/',
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',
'Programming Language :: Python :: 3',
],
# What does your project relate to?
keywords='picoscope peripherals hardware oscilloscope ATE',
install_requires=['numpy'],
cmdclass=versioneer.get_cmdclass()
)