-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.77 KB
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
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "FiPy"
authors = [
{ name="Jonathan Guyer" },
{ name="Daniel Wheeler" },
{ name="Jim Warren" },
]
description = "A finite volume PDE solver in Python"
readme = "README.rst"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"typer",
"typing_extensions"
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# These fields aren't supported by python < 3.9
# license = "NIST-Software"
# license-files = ["LICEN[CS]E*"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/usnistgov/fipy"
Issues = "https://github.com/usnistgov/fipy/issues"
[tool.setuptools.packages.find]
include = ["fipy*"] # ["*"] by default
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "fipy/_version.py"
versionfile_build = "fipy/_version.py"
tag_prefix = ""
parentdir_prefix = ""
[project.scripts]
fipy_changelog = "fipy.tools.changelog:app"
fipy_copy_script = "fipy.tools.copy_script:app"
fipy_test = "fipy.tests.test:app"
versioneer = "versioneer:main"
[project.entry-points."fipy.viewers"]
matplotlib = "fipy.viewers.matplotlibViewer:MatplotlibViewer"
mayavi = "fipy.viewers.mayaviViewer:MayaviClient"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"