-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.03 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
46
47
[tool.poetry]
name = "crunchybot"
version = "4.5.6"
description = "Crunchyroll Guest Pass Publisher for Reddit"
authors = ["David Lam <david.lam@lamdav.com>"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
]
repository = "https://github.com/lamdav/CrunchyBot"
readme = "README.md"
packages = [
{ include = "crunchy_bot" }
]
[tool.poetry.dependencies]
python = "^3.6"
Click = "^7.1.2"
praw = "^7.1.4"
prawcore = "^1.5.0"
selenium = "^3.141.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
bump2version = "^1.0.1"
pytest = "^6.2.2"
[tools.poetry.urls]
"Bug Reports" = "https://github.com/lamdav/CrunchyBot/issues"
[tools.poetry.scripts]
crunchy = "crunchy_bot.client.cli:cli"
[tool.commitizen]
name = "cz_conventional_commits"
version = "4.5.6"
version_files = [
"pyproject.toml:version",
"botData.json",
]
[build-system]
requires = ["poetry_core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"