-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (29 loc) · 943 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crazybin"
version = "1.0.0"
description = "Much better than hexbin plots! Use any kind of tile to visualize data and pictures!"
readme = "README.md"
authors = [{ name = "Paul Ockenfuß", email = "paul.ockenfuss@physik.uni-muenchen.de" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Multimedia :: Graphics",
"Framework :: Matplotlib",
]
keywords = ["hexbin", "histogram", "tiling", "parquet", "escher"]
dependencies = [
"numpy",
"matplotlib",
"shapely",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["check-manifest", "build", "twine"]
[project.urls]
Homepage = "https://github.com/Ockenfuss/crazybin"