forked from spdx/tools-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 2.01 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
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "spdx-tools"
authors = [
{name = "Ahmed H. Ismail", email = "ahm3d.hisham@gmail.com"},
{name = "Armin Tänzer", email = "armin.taenzer@tngtech.com"},
{name = "Meret Behrens", email = "meret.behrens@tngtech.com"},
{name = "Maximilian Huber", email = "maximilian.huber@tngtech.com"}
]
maintainers = [
{name = "Philippe Ombredanne", email = "pombredanne@gmail.com"},
{name = "Maximilian Huber", email = "maximilian.huber@tngtech.com"},
{name = "Jeff Licquia", email = "licquia@linuxfoundation.org"},
{name = "SPDX group at the Linux Foundation and others"},
]
license = {text = "Apache-2.0"}
description = "SPDX parser and tools."
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
urls = {Homepage = "https://github.com/spdx/tools-python"}
requires-python = ">=3.7"
dependencies = ["ply", "rdflib", "click", "pyyaml", "xmltodict", "uritools"]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
pyspdxtools_convertor = "spdx.cli_tools.convertor:main"
pyspdxtools_parser = "spdx.cli_tools.parser:main"
[tool.setuptools]
zip-safe = false # because of the uses of __file__: https://github.com/spdx/tools-python/issues/257
include-package-data = true
[tool.setuptools.packages.find]
include = ["spdx", "spdx.*"]
[tool.setuptools_scm]
git_describe_command = ["git", "describe", "--dirty", "--tags", "--long", "--match", "v[0-9]*"] # `python3.6` tag falsely matches to the default one, clrearly a bug in setuptools_scm
[tool.aliases]
release = "clean --all sdist --formats=gztar bdist_wheel"