-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.05 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.05 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
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.5.0",
description="Client library and CLI for the Synapse API",
author="Science Team",
author_email="team@science.xyz",
packages=find_packages(include=["synapse", "synapse.*"]),
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",
],
entry_points={
"console_scripts": [
"synapsectl = synapse.cli:main",
"synapse-sim = synapse.simulator:main",
],
},
)