-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 890 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
41
42
[tool.poetry]
name = "CBAnalysis"
version = "0.1.0"
description = "Analysis module for Citi Bike Planner app"
authors = ["Ri Le <[email protected]>"]
[tool.poetry.dependencies]
# Important: Use ~ to limit to only 3.11 and not 3.12
python = "~3.11"
Shapely = "^2.0.1"
Fiona = "~1.9"
Rtree = "^1.0.1"
geopandas = "^0.12.2"
pandas = "^1.1.4"
requests = "^2.24.0"
Janitor = "^0.1.1"
pyjanitor = "^0.24.0"
click = "^8.0.3"
tqdm = "^4.62.3"
scipy = "^1.10.0"
pyclean = "^2.0.0"
msgpack = "^1.0.4"
sqlalchemy = "^2.0.4"
python-dotenv = "^0.21.1"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
pytest = "^7.2"
black = "^22.1.0"
jupyterlab = "^3.2.9"
jupyter-ydoc = "^0.3.1"
jupyter-server-ydoc = "^0.7.0"
[tool.poetry.scripts]
lint = "pylint:run_pylint"
run = "cbanalysis:main"
test = "pytest:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"