-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 1.06 KB
/
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
# Choosing a build backend:
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "transit_equity"
version = "0.0.0"
authors = [
{name = "Himanshu Naidu", email = "[email protected]"},
{name = "Rebecca Hayes", email = "[email protected]"},
{name = "Siman Ning", email = "[email protected]"},
{name = "Ishan Saksena", email = "[email protected]"},
{name = "Bryna Hazelton", email = "[email protected]"},
{name = "Ryan Avery", email = "[email protected]"}
]
description = "Python Package for Transit Equity on ORCA Fare Card Data"
readme = "README.md"
dependencies = [
"numpy>=2.0.0",
"pandas>=2.2.2",
"matplotlib>=3.8.4",
"pgcli>=4.1.0",
"psycopg2>=2.9.9",
"scipy>=1.13.1",
"sqlalchemy>=2.0.30",
"python-dotenv>=1.0.1",
"setuptools>=70",
"shapely>=2.0.4",
"branca>=0.7.2",
"geopy>=2.4.1",
"networkx>=3.3"
]
requires-python = ">=3.12"
[project.optional-dependencies]
test = ["pytest"]
doc = ["sphinx"]
[project.urls]
Repository = "https://github.com/uwescience/DSSG2024_transit_equity"