-
Notifications
You must be signed in to change notification settings - Fork 116
/
setup.py
44 lines (42 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
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/python
# type: ignore
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "readme.md").read_text()
setup(
name="pyzx",
author="Quantomatic",
author_email="john@vdwetering.name",
version="0.8.0",
url="https://github.com/zxcalc/pyzx.git",
description="Library for quantum circuit rewriting and optimisation using the ZX-calculus",
long_description=README,
long_description_content_type="text/markdown",
license="Apache2",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
],
packages=[
"pyzx",
"pyzx.circuit",
"pyzx.graph",
"pyzx.routing",
"pyzx.local_search",
"pyzx.scripts",
],
python_requires='>=3.7',
install_requires=["typing_extensions>=3.7.4",
"numpy>=1.14",
"pyperclip>=1.8.1",
"tqdm>=4.56.0",
"ipywidgets>=7.5,<8",
"lark~=1.1.7"],
include_package_data=True,
)