-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (42 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opensg"
version = "0.1.0"
description = ""
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Ernesto Camarena", email = "[email protected]" },
]
# maintainers = [
# { name = "TODO", email = "TODO" },
# ]
requires-python = ">=3.9,<3.11" # this syntax might not work...
# dependencies = [
# "numpy",
# "dolfinx",
# "meshio",
# "petsc4py",
# "ufl",
# "basix",
# "gmsh"
# ]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "TODO"
Documentation = "TODO"
"Bug Tracker" = "TODO"
Discussions = "TODO"
Changelog = "TODO"