-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
31 lines (29 loc) · 882 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fiject"
version = "2025.01.01"
dependencies = [
"matplotlib >= 3.5.3",
"seaborn >= 0.12.1",
"natsort"
]
requires-python = ">= 3.9"
authors = [
{name = "Thomas Bauwens", email = "thomas.bauwens@kuleuven.be"}
]
maintainers = [
{name = "Thomas Bauwens", email = "thomas.bauwens@kuleuven.be"}
]
description = "Object-oriented, two-stage PDF figure generation library for Python."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["figures", "graphing", "drawing", "graphs", "visualization", "diagrams", "experiments", "caching"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/bauwenst/fiject"
"Bug Tracker" = "https://github.com/bauwenst/fiject/issues"