-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (47 loc) · 1.36 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
53
54
55
[tool.poetry]
name = "xoinvader"
version = "0.2.0"
description = "(not so) small python curses space game"
authors = ["Pavel Kulyov <kulyov.pavel@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/pkulev/xoinvader"
homepage = "https://github.com/pkulev/xoinvader"
documentation = "http://mmap.me/"
keywords = ["curses", "space", "game"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console :: Curses",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Games/Entertainment :: Arcade",
]
[tool.poetry.scripts]
xoigame = "xoinvader.game:main"
[tool.poetry.dependencies]
python = "^3.7"
eaf = "^0.2.2"
xo1 = "^0.2"
toml = "^0.10"
[tool.poetry.dev-dependencies]
codecov = "*"
flake8 = "*"
pylint = "*"
pytest = "*"
pytest-coverage = "*"
pytest-pylint = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"