-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cff-from-621"
description = """
Generates metadata in the Citation File Format for Python projects from \
their PEP-621 compliant package definition. Includes a CLI. \
"""
keywords = ["PEP-621", "CFF", "conversion"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development"
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cffconvert ~= 2.0",
"PyYAML",
"tomli; python_version < '3.11'",
]
authors = [
{name = "Frank Sachsenheim"}
]
dynamic = ["version"]
[project.optional-dependencies]
development = [
"build",
"flake8-black",
"mypy",
"pytest",
"types-PyYAML"
]
[project.scripts]
cff-from-621 = "cff_from_621.cli:cli"
[project.urls]
Homepage = "https://pypi.org/project/cff-from-621/"
Repository = "https://github.com/delb-xml/cff-from-621"
"Issue tracker" = "https://github.com/delb-xml/cff-from-621/issues"
[tool.setuptools.dynamic]
version = {attr = "cff_from_621.version.VERSION"}