forked from PFTL/SimpleDaq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 725 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 725 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
from setuptools import setup
setup(
name='PythonForTheLab',
version='0.1',
packages=['PythonForTheLab', 'PythonForTheLab.View', 'PythonForTheLab.Model', 'PythonForTheLab.Model.daq',
'PythonForTheLab.Model.experiment', 'PythonForTheLab.Controller'],
url='https://github.com/PFTL/SimpleDaq',
license='MIT',
author='Aquiles Carattino',
author_email='aquiles@uetke.com',
description='',
test_suite='testsuite.testsuite',
entry_points={
'console_scripts':[
'py4lab = PythonForTheLab.start:start'
],
},
install_requires=[
'pint',
'PyQt5',
'pyqtgraph',
'numpy',
'PyYAML',
'pyserial',
],
)