-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.58 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = {}
with open("graphix_perceval/version.py") as fp:
exec(fp.read(), version)
requirements = [requirement.strip() for requirement in open("requirements.txt").readlines()]
info = {
"name": "graphix_perceval",
"version": version["__version__"],
"packages": find_packages(),
"author": "Kazuki Tsuoka, Shinichi Sunami",
"author_email": "[email protected]",
"maintainer": "Kazuki Tsuoka, Shinichi Sunami",
"maintainer_email": "[email protected]",
"license": "Apache License 2.0",
"description": "Perceval interface for graphix library, the MBQC compiler",
"long_description": long_description,
"long_description_content_type": "text/markdown",
"url": "https://graphix.readthedocs.io",
"project_urls": {"Bug Tracker": "https://github.com/TeamGraphix/graphix-perceval/issues"},
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
],
"python_requires": ">=3.8,<3.12",
"install_requires": requirements,
"extras_require": {},
}
setup(**(info))