-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.03 KB
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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mobility-data-analysis"
version = "0.1.0"
description = "Analyze mobility data with trip detection, classification, and visualization"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Sammy", email = "s.breen@eweb.de"}
]
dependencies = [
"pandas>=1.3.0",
"numpy>=1.21.0",
"geopandas>=0.10.0",
"shapely>=1.7.0",
"folium>=0.12.0",
"scikit-learn>=1.0.0",
"matplotlib>=3.3.0",
"seaborn>=0.11.0",
"geopy>=2.1.0",
"requests>=2.25.0",
"streamlit_folium>=0.9.0"
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.12.0",
"black>=22.0.0",
"isort>=5.10.0",
"flake8>=3.9.0",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]