-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (33 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "helipad"
version = "1.6.2"
authors = [
{ name="C Harwick", email="[email protected]" },
]
description = "An agent-based modeling framework for Python with a shallow learning curve and powerful visualization capabilities."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = ["matplotlib", "pandas", "networkx"]
[project.optional-dependencies]
notebook = ["jupyterlab", "ipywidgets>=8.0", "ipympl"]
geo = ["shapely"]
[project.urls]
"Homepage" = "https://helipad.dev"
"Documentation" = "https://helipad.dev/functions/"
"Source Code" = "https://github.com/charwick/helipad"
[tool.setuptools.packages.find]
include = ["helipad", "sample-models", "sample-notebooks", "helipad.*"]
[tool.setuptools.package-data]
"*" = ["*.css", "*.png", "*.ipynb", "*.po", "*.mo", "*.pot"]