forked from cbc-group/pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 701 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 701 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
"""
Minimal setup.py to simplify project setup.
"""
from setuptools import find_packages, setup
setup(
name="pattern",
version="0.1",
description="",
author="Liu, Yen-Ting",
author_email="ytliu@gate.sinica.edu.tw",
license="Apache 2.0",
packages=find_packages(),
package_data={"": ["data/*"]},
install_requires=[
"click",
"coloredlogs",
"imageio",
"matplotlib",
"numpy",
'pyqtgraph>=0.11.0rc0',
'pyside2==5.12.0'
"scipy",
"tqdm",
],
zip_safe=True,
extras_require={},
entry_points={"console_scripts": ["repbuild=pattern.cli.reptools:repbuild"]},
)