forked from zxcalc/zxlive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.02 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.02 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
# type: ignore
import setuptools
# read description from README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
data_files = []
setuptools.setup(
name="zxlive",
version="0.1",
author="Aleks Kissinger",
author_email="[email protected]",
description="An interactive tool for the ZX calculus",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Quantomatic/zxlive",
project_urls={
"Bug Tracker": "https://github.com/Quantomatic/zxlive/issues",
},
license="Apache2",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=["zxlive"],
package_data={'': ['*.svg']},
data_files=data_files,
install_requires=["PySide6", "pyzx>=0.7.3", "qt-material>=2.14"],
python_requires=">=3.10",
entry_points={'console_scripts': 'zxlive=zxlive.app:main'},
)