forked from RicterZ/BGmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (50 loc) · 1.46 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 = "bgmi"
version = "2.1.3"
description = 'BGmi is a cli tool for subscribed bangumi.'
authors = [
"RicterZ <[email protected]>",
]
readme='README.rst'
license='MIT'
maintainers=[
"Trim21 <[email protected]>",
]
homepage='https://github.com/BGmi/BGmi'
repository='https://github.com/BGmi/BGmi'
keywords=['bangumi', 'bgmi', 'feed']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Other Audience',
'Natural Language :: Chinese (Traditional)',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
packages = [
{ include = "bgmi" },
]
include = ["LICENSE"]
[tool.poetry.scripts]
bgmi = 'bgmi.main:main'
bgmi_http = 'bgmi.front.server:main'
[tool.poetry.dependencies]
python = "^3.5"
beautifulsoup4 = '^4.4.0'
requests = '^2.9.1'
tornado = '^5.0.2'
icalendar = '^3.11.3'
peewee = '^3.3.4'
importlib-metadata = "^1.6.0"
[tool.poetry.dev-dependencies]
pre-commit = { version = '^2.1.0', python='>=3.6' }
black = { version = '19.10b0', python='>=3.6' }
coverage = "5.0.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"