-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.15 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
[project]
name = "gardenmap"
version = "0.1.2"
dependencies = [
"flask",
"flask-smorest",
"filelock"
]
requires-python = ">= 3.11"
authors = [
{ name="Daniel Hiepler", email="d-gardenmap@coderdu.de" },
]
description = "webapp to visualize a garden over the year "
readme = "README.md"
license-files = ["LICENSE"]
keywords = ["garden", "map", "planner", "plants", "gardening"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Other/Nonlisted Topic",
"Framework :: Flask",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.11"
]
[project.scripts]
gardenmap = "gardenmap:main"
[tool.setuptools]
packages = ["gardenmap"]
#py-modules = ['gardenmap']
[tool.setuptools.package-data]
'gardenmap' = ['*.json', 'templates/*.html', 'templates/*.js', 'templates/*.svg', 'static/*.svg', 'static/js/*.js', 'static/css/*.css']
[project.urls]
Homepage = "https://github.com/heeplr/gardenmap"
Repository = "https://github.com/heeplr/gardenmap"
Issues = "https://github.com/heeplr/gardenmap/issues"