-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools >= 69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "oq-platform-taxonomy"
description = "Taxtonomy - GEM building taxonomy glossary"
readme = "README.md"
license = { text = "AGPL-3.0-only" }
requires-python = ">=3.10, <3.13"
authors = [
{ name = "GEM Foundation", email = "[email protected]" },
]
maintainers = [
{name = "GEM Foundation", email = "[email protected]"},
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Scientists",
"License :: OSI Approved :: AGPL3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [ "django >=4.2, <5", ]
dynamic = [ "version", ]
[project.urls]
Homepage = "https://github.com/gem/oq-platform-taxonomy"
[tool.setuptools]
packages = [ "openquakeplatform_taxonomy" ]
[tool.setuptools.dynamic]
version = {attr = "openquakeplatform_taxonomy.__version__"}