-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.08 KB
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
[tool.poetry]
name = "cncrd"
version = "0.10.1"
description = "Middleware-based event processing library for Discord"
authors = ["Nariman Safiulin <woofilee@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/narimanizett/concord"
keywords = ["discord", "concord", "bot"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "concord" },
]
[tool.poetry.dependencies]
python = "^3.6"
"discord.py" = { git = "https://github.com/Rapptz/discord.py.git", branch = "rewrite" }
[tool.poetry.dev-dependencies]
black = "^18.9b0"
codecov = "^2.0"
coverage = "^4.5"
pre-commit = "^1.11"
pytest = "^3.8"
pytest-asyncio = "^0.9.0"
pytest-cov = "^2.5"
sphinx = "^1.7"
sphinx_rtd_theme = "^0.4.2"
sphinxcontrib-asyncio = "^0.2.0"
sphinxcontrib-napoleon = "^0.7"
[tool.black]
line-length = 80
py36 = true