-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (86 loc) · 2.48 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (86 loc) · 2.48 KB
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
90
91
[project]
name = "updateCitation"
version = "0.2.0"
description = "Automatically update citation files (CITATION.cff) in a GitHub repository from `pyproject.toml`, GitHub releases, and PyPI releases."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "CC-BY-NC-4.0"
authors = [{ name = "Hunter Hogan", email = "HunterHogan@pm.me" }]
keywords = [
"academic-software",
"automation",
"cff",
"citation",
"citation-files",
"doi",
"github",
"metadata",
"publishing",
"references",
"research-software",
"scholarly-communication",
"software-citation",
"zenodo",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
"Typing :: Typed",
]
urls = { Donate = "https://www.patreon.com/integrated", Homepage = "https://github.com/hunterhogan/updateCitation", Repository = "https://github.com/hunterhogan/updateCitation.git" }
scripts = { updateCitation = "updateCitation.flowControl:here" }
dependencies = [
"attrs",
"cffconvert",
"packaging",
"pygithub",
"ruamel.yaml",
"tomli",
"typing_extensions>= 4.0.0",
]
optional-dependencies = { testing = [
"pytest",
"pytest-cov",
"pytest-xdist",
] }
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.coverage]
report = { exclude_lines = [
"if TYPE_CHECKING:",
"if __name__ == \"__main__\":",
], ignore_errors = false }
run = { branch = true, concurrency = [
"multiprocessing",
], data_file = "tests/coverage/.coverage", omit = [
"tests/*",
], parallel = true, source = [
".",
] }
xml = { output = "tests/coverage/coverage.xml" }
[tool.pytest]
addopts = ["--color=auto", "-n 4"]
log_auto_indent = "On"
testpaths = ["tests"]
[tool.setuptools]
package-data = { "*" = ["py.typed"] }
packages = { find = {} }
[tool.updateCitation]
filenameCitationDOTcff = "CITATION.cff"
pathFilenameCitationSSOT = "citations/CITATION.cff"