-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (29 loc) · 1.04 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
# License: GPLv3
from os.path import realpath, dirname, join
from setuptools import setup, find_packages
import pydaqs
VERSION = pydaqs.__version__
PROJECT_ROOT = dirname(realpath(__file__))
REQUIREMENTS_FILE = join(PROJECT_ROOT, 'requirements.txt')
with open(REQUIREMENTS_FILE) as f:
install_reqs = f.read().splitlines()
install_reqs.append('setuptools')
setup(name = "pydaqs",
version=VERSION,
description = "DAQ wrappers for axopy.",
author = "Agamemnon Krasoulis",
author_email = "[email protected]",
url = "https://github.com/agamemnonc/pydaqs",
packages=find_packages(),
package_data={'': ['LICENSE.txt',
'README.md',
'requirements.txt']
},
include_package_data=True,
install_requires=install_reqs,
license='GPLv3',
platforms='any',
long_description="""
A collection of wrapper functions for DAQ packages and libraries in Python.
Mainly intended for internal use within IntellSensing Lab.
""")