-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 1.04 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
[tool.poetry]
name = "open-pinball-db"
version = "0.1.0"
description = "An open pinball database client for Python"
authors = ["Mollemoll <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/Mollemoll/open-pinball-db"
repository = "https://github.com/Mollemoll/open-pinball-db"
documentation = "https://github.com/Mollemoll/open-pinball-db#readme"
keywords = ["pinball", "database", "client"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
[tool.poetry.group.test.dependencies]
responses = "^0.25.3"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
autopep8 = "^2.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"