forked from sequence-toolbox/SeQUeNCe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.35 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
from setuptools import setup
setup(
name="sequence",
version="0.6.0",
author="Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara",
description="Simulator of Quantum Network Communication: SEQUENCE-Python is a prototype version of the official SEQUENCE release.",
# packages = find_packages('src'),
packages=['sequence', 'sequence.app', 'sequence.kernel', 'sequence.components',
'sequence.network_management', 'sequence.entanglement_management', 'sequence.qkd',
'sequence.resource_management', 'sequence.topology', 'sequence.utils', 'sequence.gui'],
package_dir={'sequence': 'src'},
package_data={'sequence': ['gui/user_templates.json', 'gui/default_params.json', 'gui/starlight.json']},
include_package_data=True,
install_requires=[
'numpy>=1.22',
'matplotlib',
'pandas',
'qutip>=4.6.0',
'dash>=1.20.0',
'dash-core-components',
'dash-html-components',
'dash-bootstrap-components',
'tqdm>=4.54.0',
'networkx',
'dash-table',
'dash-cytoscape',
'plotly',
],
)