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
35 lines (33 loc) · 898 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 898 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name='PythonForTheLab',
version="0.1.1",
packages=find_packages(),
url='https://github.com/PFTL/SimpleDaq',
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
author='Aquiles Carattino',
author_email='aquiles@uetke.com',
description='Code for Python for the Lab Workshop',
long_description=long_description,
test_suite='testsuite.testsuite',
entry_points={
'console_scripts': [
'py4lab = PythonForTheLab.start:start'
],
},
install_requires=[
'pint',
'pyqt5==5.10.1',
'pyqtgraph',
'numpy',
'PyYAML',
'pyserial',
],
)