forked from JoeMcEwen/FAST-PT
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (44 loc) · 1.44 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[project]
name = "fast-pt"
dynamic = ["version"]
requires-python = ">=3.5"
description = "FAST-PT is a code to calculate quantities in cosmological perturbation theory at 1-loop (including, e.g., corrections to the matter power spectrum)."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Joseph E. McEwen" },
{ name = "Xiao Fang" },
{ name = "Jonathan Blazek" },
{ email = "[email protected]" }
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics'
]
keywords = [
'FASTPT',
'FAST-PT',
'Perturbation-Theory'
]
dependencies = [
"numpy>=1.17",
"scipy>=1.2",
"matplotlib>=3.0"
]
[project.optional-dependencies]
[project.urls]
homepage = "https://github.com/jablazek/FAST-PT"
# Explicitly define where package is (same directory as .toml).
# Include matches full name of module how it would be imported in Python.
# (Based on guide here: https://setuptools.pypa.io/en/latest/userguide/package_discovery.html)
[tool.setuptools.packages.find]
where = ["."]
include = ["fastpt*"]