-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.42 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
[project]
name = "asimov-modules"
version = "25.0.0.dev0"
description = "ASIMOV Modules for Python"
readme = "README.md"
authors = [{ name = "ASIMOV Protocol", email = "support@asimov.so" }]
license = { text = "Unlicense" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"License :: Public Domain",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: General",
]
requires-python = ">= 3.13"
dynamic = ["dependencies"]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/asimov-modules/asimov-modules.py"
Documentation = "https://github.com/asimov-modules/asimov-modules.py"
Repository = "https://github.com/asimov-modules/asimov-modules.py.git"
Issues = "https://github.com/asimov-modules/asimov-modules.py/issues"
Changelog = "https://github.com/asimov-modules/asimov-modules.py/blob/master/CHANGES.md"
[tool.setuptools]
license-files = [] # see: https://github.com/astral-sh/uv/issues/9513
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }