-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (35 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fond-utils"
description = "FOND Utilities and Helpers" # <-- description from __description__.py
authors = [
{ name="Christian Muise", email="christian.muise@queensu.ca" },
{ name="Sebastian Sardina", email="ssardina@gmail.com" }
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
requires-python = ">=3.8"
dependencies = [
"pddl",
"requests"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
]
# version = "0.1.2" # <-- old static version
dynamic = ["version"]
# enable this if you want to generate the version from a file
# [tool.setuptools_scm]
# version_file = "fondutils/__version__.py"
[tool.setuptools_scm]
tag_regex = "^v(?P<version>.*)$" # version tag regex v1.0.0 (with a v in front
[project.urls]
Homepage = "https://github.com/AI-Planning/fond-utils/" # or your about["__url__"]
[tool.setuptools.packages.find]
include = ["fondutils", "fondutils.pddl", "fondutils.helpers"]
[project.scripts]
fond-utils = "fondutils.__main__:main"