-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.21 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "pynimate"
version = "1.3.0"
description = "Python package for statistical data animations"
readme = "README.md"
authors = [{ name = "julkar9", email = "[email protected]" }]
license = { text = "MIT License (MIT)" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["animations", "framework", "data", "plots"]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"seaborn",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "isort","mkdocs-material", "pip-tools", "pytest", "mkdocstrings[python]"]
[project.urls]
Homepage = "https://github.com/julkaar9/pynimate"
Documentation = "https://julkaar9.github.io/pynimate/"