-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.16 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
[[tool.poetry.source]]
name = "subgrab"
url = "https://github.com/RafayGhafoor/Subscene-Subtitle-Grabber"
[tool.poetry]
name = "subgrab"
version = "1.0.4"
description = "Automated subtitles fetching"
readme = "README.md"
keywords = ["automation", "subtitles", "python", "pyproject.toml", "subscene", "subgrab"]
homepage = "https://github.com/RafayGhafoor/Subscene-Subtitle-Grabber"
repository = "https://github.com/RafayGhafoor/Subscene-Subtitle-Grabber"
documentation = "https://github.com/RafayGhafoor/Subscene-Subtitle-Grabber"
long_description_content_type='text/markdown'
authors = ["Rafay Ghafoor <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
subgrab = 'subgrab.cli:main'
[tool.poetry.dependencies]
python = "^3.6.1"
requests = "^2.23.0"
bs4 = "^0.0.1"
lxml = "^4.5.0"
typing = "^3.7.4"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
black = "^19.10b0"
flake8 = "^3.7.9"
pre-commit = "^2.2.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"