-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
45 lines (38 loc) · 1.09 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
DESCRIPTION = "Fun with computer-controlled experiments for beginners" # test to see if this description is picked up by conda environment manager
setup(
name="labphew",
version="0.3.3",
packages=find_packages(),
url="https://github.com/sanlifaez/labphew",
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
author='Sanli Faez, Aron Opheij',
author_email='[email protected]',
description='Fun with computer-controlled experiments for beginners',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
entry_points={
'console_scripts': [
'labphew = labphew.__main__:main'
],
},
install_requires=[
'matplotlib',
'xarray',
'pyqtgraph',
'pyserial',
'pyyaml',
'dwf',
'pint',
'numpy',
'pyqt5',
'scipy',
],
)