-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 972 Bytes
/
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
[project]
name = "geometor-model"
dynamic = ["version"]
authors = [
{ name="phi ARCHITECT", email="[email protected]" },
]
description = "create and manage log entries for a python project"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"sympy",
"textual",
"rich",
"jinja2",
"numpy",
]
[project.scripts]
model = "geometor.model.__main__:main"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["geometor"]
namespaces = true
[tool.setuptools.dynamic]
version = {attr = "geometor.model.__version__"}
[project.urls]
"Website" = "https://geometor.github.io/model"
"Repository" = "https://github.com/geometor/model"
"Issues" = "https://github.com/geometor/model/issues"