-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·50 lines (44 loc) · 1.4 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
[build-system]
requires = ["wheel", "setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["avert_api*"]
[project]
name = "avert_api"
version = "0.0.1"
description = "A ReSTful API for accessing/managing volcanic data."
readme = "README.md"
license = {text = "GPLv3"}
requires-python = ">=3.11"
authors = [{name = "The AVERT System Team", email = "[email protected]"}]
maintainers = [{name = "Conor Bacon", email = "[email protected]"}]
keywords = ["volcanology", "data", "science", "instrumentation", "web", "api", "imagery"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"connexion[swagger-ui]",
"flask",
"Flask-SQLAlchemy",
"flask-marshmallow",
"marshmallow-sqlalchemy",
"mod_wsgi",
"python-dotenv",
"requests",
]
[project.scripts]
avert-api = "avert_api.manager:main"
[project.optional-dependencies]
dev = ["black", "ipython"]
docs = ["Sphinx >= 1.8.1", "docutils"]
[project.urls]
GitHub = "https://github.com/AVERT-System/AVERT-api"
Issues = "https://github.com/AVERT-System/AVERT-api/issues"
[tool.black]
line-length = 88