-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (48 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "dyson_orca_tools"
[project]
name = "dyson_orca_tools"
dynamic = ["version", "description"]
authors = [
{name = "Andres Ortega Guerrero", email = "andres.ortega-guerrero@empa.ch"},
{name = "Gonçalo Catarina", email = "goncalo.catarina@empa.ch"}
]
readme = "README.md"
license = {file = 'LICENSE'}
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
dependencies = [
"typer",
"pyscf",
]
[project.optional-dependencies]
dev = [
"bumpver==2023.1129",
"pre-commit==3.6.0",
]
[project.scripts]
dyson_orca_tools = 'dyson_orca_tools.cli.main:app'
[tool.bumpver]
current_version = "v0.0.1"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}."
tag_message = "Release {new_version}."
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"cubehandler/version.py" = [
'__version__ = "{pep440_version}"',
]