-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.86 KB
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
[project]
name = "bigboat"
version = "1.0.1"
description = "BigBoat docker dashboard API"
readme = "README.md"
authors = [{name = "Leon Helwerda", email = "l.s.helwerda@liacs.leidenuniv.nl"}]
license = {text = "Apache 2.0"}
requires-python = ">=3.8"
dependencies = [
"requests>=2.17.3",
"pyyaml>=3.12"
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
]
keywords = ["docker dashboard", "bigboat", "api"]
[project.urls]
"Homepage" = "https://gros.liacs.nl"
"PyPI" = "https://pypi.python.org/pypi/bigboat"
"Source Code" = "https://github.com/grip-on-software/bigboat-python-api"
"Issues" = "https://github.com/grip-on-software/bigboat-python-api/issues"
"Pull Requests" = "https://github.com/grip-on-software/bigboat-python-api/pulls"
"CI: GitHub Actions" = "https://github.com/grip-on-software/bigboat-python-api/actions"
"CI: Coveralls" = "https://coveralls.io/github/grip-on-software/bigboat-python-api?branch=master"
"CI: SonarCloud" = "https://sonarcloud.io/project/overview?id=grip-on-software_bigboat-python-api"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["bigboat"]
[tool.setuptools.package-data]
"bigboat" = ["py.typed"]
[tool.mypy]
mypy_path = "typeshed"