-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (72 loc) · 2.01 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#####
# A hatchling based setup module.
#
# See:
# https://packaging.python.org/en/latest/
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://hatch.pypa.io/latest/
#
# releasing a next version on pypi:
# 0. vim mistkit/VERSION.py # increase version number in file
# 1. git add mistkit/VERSION.py
# 2. git status
# 3. git commit -m'@ mistkit : next release v0.0.0!'
# 4. git tag -a v0.0.0 -m'version 0.0.0'
# 5. rm -r dist
# 6. python3 -m build --sdist # make source distribution
# 7. python3 -m build --wheel # make binary distribution python wheel
# 8. twine upload dist/* --verbose
# 9. git push origin
# 10. git push --tag
#####
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
# name of the project
# pip install mistkit
# import qiskit, mistkit
name = "mistkit"
dynamic = ["version"]
description = "mistkit extends the python3 based qiskit quantum computing language state_drawer function with a misty state output possibility."
readme = "README.md"
requires-python = ">=3.8, <4"
license = "Apache-2.0"
#license-files = {paths = ["LICENSE"]}
authors = [
{name="Elmar Bucher", email="[email protected]"}
]
maintainers = [
{name="Elmar Bucher", email="[email protected]"}
]
keywords = [
"quantum theory",
"quantum computing",
"q is for quantum",
"misty state",
"ibm",
"qiskit",
"python3",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"qiskit",
]
[project.urls]
Hompage = "https://github.com/elmbeech/mistkit"
Documentation = "https://github.com/elmbeech/mistkit/blob/main/README.md"
Issues = "https://github.com/elmbeech/mistkit/issues"
Source = "https://github.com/elmbeech/mistkit"
#DOI = "https://"
[tool.hatch.version]
path = "mistkit/VERSION.py"
[tool.hatch.build.targets.sdist]
include = ["*"]
exclude = []