-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.04 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
[project]
name = "stratocaster"
description = ""
readme = {file = "README.md", content-type = "text/markdown"}
maintainers = [
{name = "Ian Kenney", email = "ianmichaelkenney@gmail.com"}
]
authors = [{name = "Ian Kenney", email = "ianmichaelkenney@gmail.com"}]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
]
requires-python = ">= 3.9"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/OpenFreeEnergy/stratocaster"
Issues = "https://github.com/OpenFreeEnergy/stratocaster/issues"
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"stratocaster[test]",
"black",
]
[build-system]
requires = [
"setuptools",
"versioningit",
]
build-backend = "setuptools.build_meta"
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.vcs]
method = "git"
match = ["v*"]
default-tag = "v0.0.0"