-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 1018 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
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "interaction-devkit"
version = "0.1.15"
description = "A toolkit for building interactive applications."
readme = "README.md"
authors = [{name="Juanwu Lu", email="juanwu@purdue.edu"}]
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"defusedxml",
"geopandas",
"matplotlib",
"numpy>=1.24.1",
"pandas",
"pyproj",
"shapely>=2.0.1",
]
[project.optional-dependencies]
dev = ["black", "bumpver", "flake8", "isort", "pip-tools", "pytest"]
[tool.black]
line-length = 79
[tool.isort]
known_first_party = "interaction-devkit"
line_length = 79
profile = "black"
[tool.bumpver]
current_version = "0.1.15"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"interaction/_version.py" = ['version = "{version}"']