forked from UCL/simstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 914 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
[tool.poetry]
name = "simstock"
version = "0.2.4"
description = "A Python package for building stock simulations"
authors = [
"Olly Smith <[email protected]>",
"Ivan Korolija <[email protected]>",
"Shyam Amrith <email>"
]
readme = "README.md"
packages = [{include = "simstock", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
shapely = "^2.0.1"
eppy = "^0.5.63"
pandas = "^1.5.3"
numpy = "^1.24.2"
fastparquet = "^2023.2.0"
matplotlib = "^3.7.1"
geopandas = "^0.13.2"
[tool.poetry.group.dev.dependencies]
pdoc = "^13.0.0"
pylint = "^2.16.4"
ipykernel = "^6.22.0"
poetry2conda = "^0.3.0"
sphinx = "^6.0"
sphinx-rtd-theme = "^1.3.0"
[tool.poetry2conda]
name = "simstock"
[tool.poetry2conda.dependencies]
eppy = {name = "eppy-core", channel = "conda-forge"}
geopandas = {channel = "conda-forge"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"