forked from hwelch-fle/plankapy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 814 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 814 Bytes
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
[project]
name = "plankapy"
version = "2.2.2"
# Contributors can add their info here
authors = [
{ name="Hayden Welch", email="hwelch@finelines-engineering.com" },
]
description = "A Python interface for Plankanban"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
dependencies = []
[tool.setuptools.packages.find]
where = ["src"]
include = ["plankapy*"]
[project.urls]
Homepage = "https://github.com/hwelch-fle/plankapy"
Documentation = "https://hwelch-fle.github.io/plankapy/plankapy.html"
Issues = "https://github.com/hwelch-fle/plankapy/issues"
Discussions = "https://github.com/hwelch-fle/plankapy/discussions"