-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
56 lines (48 loc) · 1.59 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
56
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "invectio"
urls = { url = "https://github.com/thoth-station/invectio" }
description = "Statically analyze sources and extract information about called and exported library functions in Python applications"
readme = "README.rst"
authors = [
{ name = "Fridolin Pokorny", email = "[email protected]" }
]
maintainers = [
{ name = "Fridolin Pokorny", email = "[email protected]" }
]
license = { text = "GPLv3+" }
classifiers = [
"Operating System :: POSIX :: Linux",
"Topic :: Software Development",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
keywords = [ "ast", "source", "code", "analysis", "thoth", "library" ]
dynamic = [ "version", "dependencies" ]
[project.scripts]
invectio = "invectio.cli:cli"
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "invectio.__version__"}
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.package-data]
invectio = ["py.typed"]
[tool.setuptools.packages.find]
namespaces = false
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "--timeout=60 --cov --mypy --capture=no --verbose --ignore=tests/data/ -l -s -vv"
testpaths = [
"tests"
]
[tool.coverage.run]
source = ["invectio"]