-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
80 lines (71 loc) · 2.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "gn-module-monitoring-flora-territory"
description = "GeoNature Monitoring Flora Territory module for Conservation."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["conservation", "monitoring", "flora", "territory"]
license = {file = "LICENSE"}
maintainers = [
{name = "Conservatoire Botanique National Alpin", email = "geonature@cbn-alpin.fr"},
{name = "Parcs national des Écrins", email = "geonature@ecrins-parcnational.fr"},
]
authors = [
{name = "Khanh Chau"},
{name = "Cendrine HOARAU", email = "c.hoarau@cbn-alpin.fr"},
{name = "Jean-Pascal MILCENT", email = "jp.milcent@cbn-alpin.fr"},
{name = "Théo LECHEMIA"},
{name = "Camille MONCHICOURT"},
{name = "Nicolas ROUYER"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
urls.homepage = "https://github.com/PnX-SI/gn_module_suivi_flore_territoire"
urls.documentation = "https://github.com/PnX-SI/gn_module_suivi_flore_territoire"
urls.repository = "https://github.com/PnX-SI/gn_module_suivi_flore_territoire"
dynamic = ["version"]
dependencies = [
"gn_conservation_backend_shared>=0.5.2",
"geonature>=2.13"
]
[project.optional-dependencies]
dev = [
"black",
# Manually install gn_conservation_backend_shared with `pip install -e <path-to-gn-conservation-backend-shared>` if not installed in venv
]
prod = [
"gn_conservation_backend_shared@git+https://github.com/cbn-alpin/gn_conservation_backend_shared.git@0.5.2",
]
[project.entry-points.gn_module]
code = "gn_module_monitoring_flora_territory:MODULE_CODE"
picto = "gn_module_monitoring_flora_territory:MODULE_PICTO"
blueprint = "gn_module_monitoring_flora_territory.blueprint:blueprint"
config_schema = "gn_module_monitoring_flora_territory.conf_schema_toml:GnModuleSchemaConf"
migrations = "gn_module_monitoring_flora_territory:migrations"
alembic_branch = "gn_module_monitoring_flora_territory:MODULE_DB_BRANCH"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=60.0.0", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["backend"]
include = ["gn_module_monitoring_flora_territory*"]
namespaces = true
[tool.setuptools.package-data]
"gn_module_monitoring_habitat_station.migrations.data" = ["*.sql", "*.csv"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"backend",
]
[tool.distutils.bdist_wheel]
universal = true
[tool.black]
line-length = 100