-
Notifications
You must be signed in to change notification settings - Fork 177
/
pyproject.toml
51 lines (46 loc) · 1.57 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
[project]
name = "toad"
description = "Toad is dedicated to facilitating model development process, especially for a scorecard."
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [{name = "Secbone", email = "[email protected]"}]
classifiers = [
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dynamic = [
"version",
"readme",
"dependencies",
"optional-dependencies",
"entry-points",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {nn = {file = ["requirements-nn.txt"]}, tools = {file = ["requirements-tools.txt"]}, all = {file = ["requirements-nn.txt", "requirements-tools.txt"]} }
[build-system]
requires = [
"setuptools",
"Cython >= 0.29.15",
"numpy >= 1.20",
"wheel",
"twine",
]
build-backend = "setuptools.build_meta"
[console_scripts]
toad = "toad.cli:main"
[tool.setuptools.packages.find]
exclude = ["tests"]
[project.urls]
Homepage = "https://github.com/amphibian-dev/toad"
Documentation = "https://toad.readthedocs.io/en/stable/"
Repository = "https://github.com/amphibian-dev/toad.git"
Issues = "https://github.com/amphibian-dev/toad/issues"
Changelog = "https://github.com/amphibian-dev/toad/blob/master/CHANGELOG.md"