-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
89 lines (78 loc) · 2.17 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
89
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"
]
[project]
name = "pyslice"
dynamic = ["readme", "version"]
description = "Specialized templating engine do develop a parameterized set of model data sets"
dependencies = [
"binaryornot",
"numpy"
]
authors = [
{name = "Tim Cera", email = "tim@cerazone.net"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"monte-carlo",
"simulation",
"model",
"parametric",
"model-parameters",
"cli-app"
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
[project.scripts]
pyslice = "pyslice:main"
[project.urls]
documentation = "https://timcera.bitbucket.io/pyslice/docs/index.html#pyslice-documentation"
github = "https://github.com/timcera/pyslice"
bitbucket = "https://bitbucket.org/timcera/pyslice/src/main/"
[tool.check-manifest]
ignore = [
"docs/_function_autosummary/*",
".coverage",
".deepsource.toml",
".ipynb_checkpoints/*"
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
update_changelog_on_bump = true
version = "6.0.3"
version_files = ["VERSION"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
license-files = ["LICENSE.txt"]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]