-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (44 loc) · 1.22 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 = "malpy3"
version = "0.1.0"
description = "A command line interface to MyAnimeList profile"
authors = ["Jonnieey <[email protected]>"]
readme = "README.md"
license = "GPL"
keywords = ["myanimelist", "cli", "mal", "python3"]
include = [ "pyproject.toml", "README.md", "CHANGELOG.md" ]
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Internet",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "*"
xdg = "*"
decorating = "^0.6.1"
toml = "*"
[tool.poetry.dev-dependencies]
Sphinx = "^3.2.1"
sphinx-rtd-theme = "^0.5.0"
pypandoc = "^1.5"
wheel = "^0.35.1"
black = "*"
recommonmark = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mal = "malpy3.cli:main"
[tool.black]
line-length = 79
include = '\.py$'