generated from pyiron/pyiron_module_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.28 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
[build-system]
requires = [
"setuptools",
"versioneer[toml]==0.29",
]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx_parser"
description = "sphinx_parser - Your pyiron-like module."
readme = "docs/README.md"
keywords = [ "pyiron",]
requires-python = ">=3.9, <3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
]
dynamic = [ "version",]
authors = [
{ name = "Lorem Ipsum", email = "[email protected]" },
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://pyiron.org/"
Documentation = "https://sphinx_parser.readthedocs.io"
Repository = "https://github.com/pyiron/sphinx_parser"
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "sphinx_parser/_version.py"
parentdir_prefix = "sphinx_parser"
tag_prefix = "sphinx_parser-"
[tool.setuptools.packages.find]
include = [ "sphinx_parser*",]
[tool.setuptools.dynamic.version]
attr = "sphinx_parser.__version__"