-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["flit_core >=3.4.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "honeybees"
dynamic = ['version']
description = "Honeybees is an agent-based modelling framework targeted at large-scale agent-based models."
readme = "README.md"
readme-content-type = "text/markdown"
requires-python = ">=3.10"
authors = [
{name = "Jens de Bruijn", email = "[email protected]"},
]
home-page = "http://github.com/jensdebruijn/honeybees"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
dependencies = [
"netcdf4",
"pandas",
"openpyxl",
"geopandas",
"numpy",
"numba>=0.61.0",
"tornado",
"python-dateutil",
"rasterio",
"pyyaml",
"matplotlib",
"xarray",
"rioxarray",
"zarr",
]
[project.optional-dependencies]
plotting = ["cartopy"]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"sphinxcontrib-autoprogram",
]
dev = [
"matplotlib",
"pytest",
"pytest-plt",
"pytest-benchmark",
"cartopy",
"ruff",
]