-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.4 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
[project]
name = "cared"
version = "0.1.1"
description = "Dummy Python package to block the name cared on pypi and avoid name squatting attacks."
authors = [
# Authors sorted by number of commits
{name = "David Linke", email = "[email protected]"},
]
maintainers = [
{name = "David Linke", email = "[email protected]"},
]
license = {text = "Apache 2.0"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["CaReD"]
dependencies = []
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Documentation = "https://github.com/likat-rostock/cared"
GitHub = "https://github.com/likat-rostock/cared"
[project.optional-dependencies]
dev = [
"pytest",
]
[project.scripts]
cared = "cared.__init__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Spell checker: https://github.com/crate-ci/typos
[tool.typos.default.extend-words]
# Don't correct surname "Linke" (writing "linke" in lowercase was required for ignoring)
linke = "linke"
[tool.typos.files]
extend-exclude = ["LICENSE"]