-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.15 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydec"
#dynamic = ["version"]
version = "1.2.1"
description = "PyDEC: A Python Library for Discretizations of Exterior Calculus."
#readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name="Nathan Bell", email="[email protected]" },
{ name="Anil N. Hirani", email="[email protected]" }
]
maintainers = [
{ name="Anil N. Hirani", email="[email protected]" },
{ name="Kaushik Kalyanaraman", email="[email protected]" }
]
requires-python = ">=3.9"
keywords = ["DEC", "FEEC", "exterior calculus"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics"
]
[project.urls]
"Homepage" = "https://github.com/hirani/pydec"
"Bug Tracker" = "https://github.com/hirani/pydec/issues"
#[tool.setuptools.dynamic]
#version = {attr = "pydec.__version__"}
#[tool.setuptools]
#include-package-data = true
[tool.setuptools.packages.find]
where = ["pydec"]