-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
39 lines (33 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pylasu"
dynamic = ["version", "optional-dependencies"]
authors = [
{ name="Lorenzo Addazi", email="[email protected]" },
{ name="Alessio Stalla", email="[email protected]" },
{ name="Federico Tomassetti", email="[email protected]" },
]
description = "Pylasu is an AST Library in the StarLasu family, targeting the Python language."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
license = { file="LICENSE" }
[project.urls]
"Homepage" = "https://github.com/strumenta/pylasu"
"Bug Tracker" = "https://github.com/strumenta/pylasu/issues"
[tool.setuptools.dynamic]
version = {attr = "pylasu.VERSION"}
[tool.setuptools.packages.find]
include = ["pylasu*"]
[tool.coverage.run]
branch = true
omit = ["docs/*", "tests/*"]
[tool.coverage.report]
show_missing = true
skip_covered = true