-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (73 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = [
"setuptools>=68",
"wheel>=0.42"
]
build-backend = "setuptools.build_meta"
[project]
name = "Urbantrips"
version = "0.4.1"
description = "A library to process public transit smart card data."
authors = [{name = "Felipe Gonzalez"},{name = "Sebastian Anapolsky"}]
requires-python = ">=3.12"
dependencies = [
"contextily==1.6.2",
"folium==0.18.0",
"geopandas==1.1.2",
"fiona==1.10.1",
"h3==4.3.0",
"httpcore==1.*",
"ipython==8.29.0",
"jupyterlab==4.5.9",
"libpysal==4.12.1",
"mapclassify==2.8.1",
"matplotlib==3.10.0rc1",
"matplotlib-scalebar==0.8.1",
"notebook==7.5.6",
"numba==0.60.0",
"numpy==1.26.4",
"openpyxl==3.2.0b1",
"osmnx==2.0.0rc2",
"pandas==2.2.3",
"pandana==0.7",
"patsy==1.0.1",
"pillow==12.3.0",
"plotly==5.24.1",
"PyYAML==6.0.2",
"seaborn==0.13.2",
"shapely==2.0.6",
"scipy<1.16",
"statsmodels>=0.14.4",
"streamlit==1.54.0",
"streamlit_folium==0.23.2",
"pydeck==0.9.1",
"weightedstats==0.4.1",
"osmnet==0.1.7",
"anyio==4.6.2.post1",
"platformdirs==4.2.2",
"typing_extensions==4.12.2",
"squarify",
"matplotlib_venn",
"unidecode",
"chardet",
"palettable",
"duckdb",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-mock",
"ruff",
"black",
"build",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["urbantrips*"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]
[tool.black]
target-version = ["py312"]