-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 876 Bytes
/
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
[tool.poetry]
name = "akun-tools"
version = "0.1.2"
description = "Tools for interacting with anonkun/fiction.live"
authors = ["alethiophile <alethiophile.dev@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/alethiophile/akun-tools"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.9.1"
qtoml = "^0.3.0"
click = "^7.1.2"
python-magic = "^0.4.18"
html5lib = "^1.1"
trio = "^0.17.0"
asks = "^2.4.10"
[tool.poetry.dev-dependencies]
mypy = "^0.782"
trio-typing = "^0.5.0"
[tool.poetry.scripts]
akun_scraper = 'akun_tools.scraper:scraper'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"