forked from andycasey/nifty-solve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 921 Bytes
/
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
[project]
name = "nifty-solve"
version = "0.1.0"
readme = "README.md"
license = {text = "LICENSE.md"}
description = "Nifty solver"
keywords = ["astronomy software"]
authors = [
{name = "Andy Casey", email = "[email protected]"},
{name = "Thomas Hilder", email = "[email protected]"},
]
maintainers = [
{name = "Andy Casey", email = "[email protected]"},
]
dependencies = [
"numpy",
"finufft",
"pylops",
"scipy",
]
#requires-python = ">= 3.9"
[classifiers]
development_status = "4 - Beta"
intended_audience = "Science/Research"
natural_language = "English"
programming_language = "Python :: 3"
topic = ["Documentation :: Sphinx", "Topic :: Software Development :: Libraries :: Python Modules"]
[tool.setuptools.packages.find]
where = ["src/"]
include = ["nifty_solve"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-sugar",
"pre-commit",
"black",
]