forked from spdx/yalm-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 847 Bytes
/
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
[tool.poetry]
name = "yalm"
version = "0.0.2.a7"
description = "SPDX YALM is a license matching library based on the SPDX License Matching Guideline."
readme = "README.md"
authors = [
"mikit <[email protected]>",
"Anshul Dutt Sharma <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/m1kit/yalm-python"
homepage = "https://github.com/m1kit/yalm-python"
keywords = [
"spdx",
"license",
"detection",
"classfier",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
]
[tool.poetry.dependencies]
python = "^3.9"
terregex = "~=0.0.5"
regex = "^2021.8.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
coverage = "^5.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"