forked from petermilne/acq400_hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (23 loc) · 828 Bytes
/
Copy pathsetup.py
File metadata and controls
40 lines (23 loc) · 828 Bytes
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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='acq400_hapi',
version='1.0.0',
description='A python package for connection ACQ400 series D-TACQ products.',
url='https://github.com/D-TACQ/acq400_hapi',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='D-TACQ',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['numpy'],
)