-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "meteociel-api"
authors = [
{name="Gabriel HAUSKNOST"},
# {name="Manon PINTO"},
{name="Antoine ROYER"}
]
description = " An unofficial API for the Météociel website"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 4 - Beta"
]
dynamic = [
"version",
"dependencies"
]
[tool.setuptools]
license-files = [
"LICENSE",
]
[project.optional-dependencies]
doc = [
"sphinx>=7.0.1",
"sphinx-rtd-theme",
"sphinx-autodocgen",
]
[tool.setuptools.dynamic.version]
attr = "meteociel.__init__.__version__"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
meteociel = "meteociel.__main__:main"
[project.urls]
Homepage = "https://github.com/Meteo-API/meteociel_api"
Documentation = "http://meteociel-api.rtfd.io/"