-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·56 lines (47 loc) · 1.38 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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[project]
name = "braq"
description = "Customizable data format for config files, AI prompts, and more"
readme = "README.md"
authors = [
{name = "Pyrustic Architect", email = "rusticalex@yahoo.com"},
]
maintainers = [
{name = "Pyrustic Architect", email = "rusticalex@yahoo.com"},
]
license = {text = "MIT License"}
keywords = [
]
# https://pypi.org/classifiers/
classifiers = [
#"Development Status :: 3 - Alpha"
#"Development Status :: 4 - Beta"
#"Development Status :: 5 - Production/Stable"
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.8"
dependencies = [
"paradict",
"written",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyrustic/braq"
[project.scripts]
braq = "braq.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version.file = "VERSION"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"