-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (46 loc) · 1.35 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
[project]
name = "odeanimate"
authors = [
{ name="Miguel Alejandro Salgado Zapien", email="ekiim@ekiim.xyz"},
]
description = "A module for useful quick mathematical calculation, plotting and animation."
readme="README.md"
requires-python = ">= 3.11"
license = {text = "GPL-2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"matplotlib"
]
dynamic = ["version"]
[metadata]
license = "GPL 2"
[project.urls]
"Homepage" = "https://odeanimate.ekiim.xyz"
"Source" = "https://github.com/ekiim/odeanimate"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
license-files = ["LICENSE.txt"]
[tool.setuptools.packages.find]
include = ["odeanimate*"]
[tool.setuptools.dynamic]
version = {attr = "odeanimate.__version__"}
[tool.pytest.ini_options]
addopts = "-q --doctest-modules --cov=odeanimate"
testpaths = ["odeanimate", "tests"]
python_files = "*.py"
[tool.pytest.plugins]
cov = {source = "odeanimate"}
doctestplus = {}
[tool.black]
line-length = 80
docstring-style = 'ignore'