forked from InfamousPlatypus/Gridsynth-Python-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (22 loc) · 677 Bytes
/
pyproject.toml
File metadata and controls
24 lines (22 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Gridsynth-Python-wrapper"
version = "1.0.0"
description = "Use Gridsynth in python"
readme = "README.md"
authors = [{ name = "Mark McGuire", email = "littlemarkmcguire@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GPL3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Quantum", "Synthesis"]
dependencies = [
'tomli; python_version < "3.11"',
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/InfamousPlatypus/Gridsynth-Python-wrapper"