-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
43 lines (37 loc) · 915 Bytes
/
setup.cfg
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
[metadata]
name = graph_state_generation
description = "Graph State Generation"
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/sfc-aqua/gosc-graph-state-generation
author = Aqua
author_email = [email protected],
license = MIT
license_file = LICENSE
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
Topic :: Scientific/Engineering
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find_namespace:
python_requires = ~=3.8
install_requires =
networkx==2.8.7
matplotlib
numpy>=1.20
[options.packages.find]
where = src
[options.extras_require]
dev =
black~=22.3
flake8~=3.9.0
Flake8-pyproject>=0.9.0
isort~=5.9.0
mypy~=0.910
pytest~=6.2
pytest-cov>=2.12