-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 839 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 839 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tm2py"
version = "0.1.0"
description = "Travel Model Two - python edition"
authors = [
{ name = "Metropolitan Transportation Commission", email = "info@bayareametro.gov" }
]
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
# "inro-emme",
"toml",
"pydantic",
"requests",
"scipy",
"geopandas",
"openmatrix",
# these would be in an EMME environment
"pyproj",
"shapely"
]
[project.urls]
Homepage = "https://github.com/BayAreaMetro/tm2py"
Documentation = "https://bayareametro.github.io/tm2py/"
Source = "https://github.com/BayAreaMetro/tm2py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]