-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.18 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
51
52
[tool.poetry]
name = "sonolus-core-py"
version = "0.1.0"
description = "Typings and util functions for sonolus"
authors = ["Dosugamea <[email protected]>"]
license = "AGPLv3+"
homepage = "https://github.com/PurplePalette/sonolus-core-py"
repository = "https://github.com/PurplePalette/sonolus-core-py"
keywords = ["sonolus"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Utilities"
]
packages = [
{ include = "sonolus_core", from = "src" }
]
include = [
"LICENSE",
"README.md"
]
[tool.poetry.dependencies]
python = "^3.8"
dataclasses-json = "^0.5.6"
single-source = "^0.2.0"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pysen = {version = "0.9.1", extras = ["lint"]}
pytest-sugar = "^0.9.4"
pysen-ls = "^0.1.2"
[tool.pysen]
version = "0.9"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py38"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"