forked from Hagb/pymycqu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 1003 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
36
37
38
39
40
[tool.poetry]
name = "mycqu"
version = "0.5.0"
description = "重庆重庆大学新教务网及相关 api 的封装"
authors = ["Hagb <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://pymycqu.hagb.name"
repository = "https://github.com/Hagb/pymycqu"
documentation = "https://pymycqu.hagb.name"
keywords = ["cqu", "Chongqing University", "data model"]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2"
pydantic = "^1"
pycryptodome = {version = "^3", optional = true}
pycryptodomex = "^3"
pytz = "*"
[tool.poetry.extras]
pycryptodome = ["pycryptodome"]
[tool.poetry.dev-dependencies]
sphinx-multiversion = "^0"
sphinx = "^4"
jieba = "^0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"