-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.9 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
57
58
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "RestlessFunnelBot"
description = "Message Aggregator For Social Networks"
readme = "README.md"
requires-python = ">=3.7,<=3.11"
license = {text = "MIT"}
authors = [
{name = "0dminnimda", email = "[email protected]"},
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: End Users/Desktop",
"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",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Archiving",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
# "Documentation" = "https://RestlessFunnelBot.readthedocs.io/en/latest/"
"Source" = "https://github.com/0dminnimda/RestlessFunnelBot"
"Bug Tracker" = "https://github.com/0dminnimda/RestlessFunnelBot/issues"
[tool.setuptools.package-data]
RestlessFunnelBot = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "RestlessFunnelBot.__metadata__.__version__"}
dependencies = {file = "requirements/basic.txt"}
[tool.setuptools.dynamic.optional-dependencies]
# docs = {file = "requirements/docs.txt"}
test = {file = "requirements/test.txt"}
speedups = {file = "requirements/speedups.txt"}
# python -m mypy --config-file pyproject.toml
[tool.mypy]
python_version = "3.7"
ignore_missing_imports = true
check_untyped_defs = true
files = ["RestlessFunnelBot", "tests"]