-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (41 loc) · 1.56 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
[build-system]
# setuptools-scm helps to find package-data which is tracked by git
# anyway, make sure the following packages are installed
# pip install build setuptools_scm
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyirk"
description = "Python based 'Imperative Representation of Knowledge' (PyIRK)"
authors=[{name = "Carsten Knoll", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GNU General Public License v3 (GPLv3)" }
dynamic = ["dependencies", "version"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
# copied (and name-adapted) from the original setup.py
# long_description="""
# (Python based) Imperative Representation of Knowledge (PyIRK).
#
# - Inspired by OWL, but more expressive
# - Inspired by Wikidata, but much simpler
# - Inspired by SUO-KIF, but with less brackets
# - Represented directly in python
# - Designed to formally represent knowledge (including meta levels)
# """
# see also https://realpython.com/python-toml/
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project.urls]
Homepage = "https://github.com/ackrep-org/pyirk-core/"
[project.scripts]
pyirk = "pyirk.script:main"
[tool.setuptools.packages.find]
# note: `include-package-data = true` by default in pyproject.toml
where = ["src"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "pyirk.__version__"}