-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.33 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "modulegraph2"
author = "Ronald Oussoren"
author-email = "[email protected]"
home-page = "https://modulegraph2.readthedocs.io/"
description-file = "ReadMe.rst"
requires = [
"typing_extensions",
"objectgraph",
# Backward compatiblity with Python 3.6:
"dataclasses; python_version < '3.7'",
]
requires-python = ">=3.6,<4"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"Development Status :: 4 - Beta",
]
license = "MIT"
[tool.flit.metadata.urls]
"Documentation" = "https://modulegraph2.readthedocs.io/"
"Source Code" = "https://github.com/ronaldoussoren/modulegraph2/"
"Issue Tracker" = "https://github.com/ronaldoussoren/modulegraph2/issues"
"Supporting" = "https://blog.ronaldoussoren.net/support/"