-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (47 loc) · 1.65 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>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pynalyser"
description = "Static Python Code Analyzer"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "0dminnimda", email = "0dminnimda.contact@gmail.com"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
"Documentation" = "https://pynalyser.readthedocs.io/en/latest/"
"Source" = "https://github.com/0dminnimda/pynalyser"
"Bug Tracker" = "https://github.com/0dminnimda/pynalyser/issues"
[tool.setuptools.package-data]
pynalyser = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "pynalyser.__version__"}
dependencies = {file = "requirements/basic.txt"}
[tool.setuptools.dynamic.optional-dependencies]
docs = {file = "requirements/docs.txt"}
test = {file = "requirements/test.txt"}
# python -m mypy --config-file pyproject.toml
[tool.mypy]
python_version = "3.7"
ignore_missing_imports = true
check_untyped_defs = true
files = ["pynalyser", "tests"]