forked from geo-yuheng/Yuheng
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 881 Bytes
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
[tool.poetry]
name = "__YUHENG_CORE_NAME__"
version = "__YUHENG_VERSION__"
description = "A non-database Python base OSM data parser, with SQL operation simulated."
authors = ["快乐的老鼠宝宝 <keaitianxinmail@qq.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/OSMChina/Yuheng"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [{ include = "yuheng", from = "src" }]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.20"
[tool.poetry.extras]
full = ["requests"]
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.1"
pyright = "^1.1.291"
pytest = "^7.2.1"
pylint = "^2.15.10"
black = "^23.1.0"
isort = "^5.12.0"
pycodestyle = "^2.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"