-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (44 loc) · 1.49 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as readme_file:
long_description = readme_file.read()
setup(
name='handyscope',
description='Handyscope provides a Python interface to the mobile USB-oscilloscopes made by TiePie.',
long_description=long_description,
url='http://emt.uni-paderborn.de',
author='Tim Hetkaemper',
author_email='[email protected]',
license='BSD',
# Automatically generate version number from git tags
use_scm_version=True,
packages=[
'handyscope'
],
# Additional data
package_data={
'handyscope': ['bin/libtiepie32.dll',
'bin/libtiepie64.dll',
'bin/libtiepie.so',
'config.json'],
},
# Runtime dependencies
install_requires=[
'numpy',
'scipy'
],
# Setup/build dependencies; setuptools_scm required for git-based versioning
setup_requires=['setuptools_scm', 'pytest-runner'],
# Test dependencies
tests_require=['pytest'],
# For a list of valid classifiers, see
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for full list.
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
)