forked from toolsforexperiments/plottr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.6 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.6 KB
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
46
47
48
49
50
51
from setuptools import setup, find_packages
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='plottr',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A tool for live plotting and processing data',
long_description=long_description,
long_description_content_type="text/markdown",
author='Wolfgang Pfaff',
author_email='wolfgangpfff@gmail.com',
url='https://github.com/toolsforexperiments/plottr',
packages=find_packages(include=("plottr*",)),
package_data={'plottr': ['resource/gfx/*']},
install_requires=[
'pandas>=0.22',
'xarray',
'pyqtgraph>=0.10.0',
'matplotlib',
'numpy',
'lmfit',
'h5py>=2.10.0',
'qtpy>=1.9.0',
'typing-extensions>=3.7.4.3',
"packaging>=20.0",
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering'
],
python_requires='>=3.6',
extras_require={'PyQt5': "PyQt5", "PySide2": "PySide2"},
entry_points={
"console_scripts": [
"plottr-monitr = plottr.apps.monitr:script",
"plottr-inspectr = plottr.apps.inspectr:script",
"plottr-autoplot-ddh5 = plottr.apps.autoplot:script",
],
}
)