-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (53 loc) · 1.38 KB
/
setup.py
File metadata and controls
55 lines (53 loc) · 1.38 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
52
53
54
55
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="science-synapse",
version="2.6.0",
description="Client library and CLI for the Synapse API",
author="Science Team",
author_email="team@science.xyz",
packages=find_packages(include=["synapse", "synapse.*"]),
package_data={
"synapse": [
"utils/model_converter/docker/Dockerfile",
"utils/model_converter/docker/convert.py",
],
},
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=[
"coolname",
"dearpygui",
"grpcio-tools",
"numexpr>=2.8.7",
"numpy >=2.0.0",
"pandas >=2.2.0",
"paramiko >=3.5.1",
"protoletariat",
"pyqt5",
"pyqtgraph",
"pyserial",
"pyyaml",
"pyzmq",
"rich==14.0.0",
"scipy",
"h5py",
],
extras_require={
"model-convert": [
"onnx>=1.12.0,<1.16.0",
"torch",
"packaging",
"protobuf",
],
},
entry_points={
"console_scripts": [
"synapsectl = synapse.cli:main",
"synapse-sim = synapse.simulator:main",
],
},
)