-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (39 loc) · 1.03 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
32
33
34
35
36
37
38
39
40
41
42
"""qureed installation configuration"""
import os
from setuptools import find_packages, setup
current_dir = os.path.abspath(os.path.dirname(__file__))
setup(
name="qureed",
version="0.0.2",
author="Simon Sekavčnik",
author_email="simon.sekavcnik@tum.de",
description="Simulating quantum experiments with realistic device models",
license="Apache 2.0",
packages=find_packages(where="."),
install_requires=[
"numpy",
"numba",
"scipy",
"photon_weave==0.1.4",
"flet==0.22.0",
"matplotlib",
"qutip",
"seaborn",
"plotly",
"jinja2",
"mpmath",
"toml",
"jax"
],
package_data={
"qureed": ["templates/*.jinja", "gui/assets/*.png"],
},
include_package_data=True,
entry_points={
"console_scripts": [
"qureed-template=qureed.cli:main",
"qureed-gui=qureed.gui.main:start",
"qureed-execute=qureed.simulation.simulate_from_json:main",
],
},
)