forked from ColinShark/exaroton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 953 Bytes
/
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
[tool.poetry]
name = "exaroton-expanded"
version = "0.0.8"
description = "Python API wrapper for exaroton"
authors = ["GalacticalEdge <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/GalacticalEdge/exaroton-expanded"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Games/Entertainment",
]
include = ["README.md"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.0"
[tool.poetry.group.dev.dependencies]
rich = "^13.3.1"
black = "^23.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"