-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
65 lines (55 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
# SPDX-FileCopyrightText: 2022 Tanguy Fardet
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pynsee"
authors = [
{ name="Hadrien Leclerc", email="[email protected]" },
{ name="Lino Galiana", email="[email protected]" },
{ name="Thomas Grandjean", email="[email protected]" },
{ name="Tanguy Fardet", email="[email protected]" },
]
license = {file = "LICENSE.md"}
description = "Tools to Easily Search and Download French Data From INSEE and IGN APIs."
readme = "README.md"
keywords = [
"INSEE", "IGN", "statistics", "demography", "geospatial", "France", "GIS",
"statistique", "démographie", "géospatial", "SIG"
]
requires-python = ">=3.9"
dynamic = ["dependencies", "optional-dependencies", "version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: GIS"
]
[project.urls]
repository = "https://github.com/InseeFrLab/pynsee"
bug-tracker = "https://github.com/InseeFrLab/pynsee/issues"
documentation = "https://pynsee.readthedocs.io"
[tool.setuptools]
package-dir = {"" = "."}
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["pynsee*"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.zip"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.full = {file = ["requirements.txt", "requirements-extra.txt"]}
version = {attr = "pynsee.__version__"}
[tool.black]
include = '\.py$'
line-length = 79