-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.79 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
67
[project]
name = 'numcosmo_py'
version = '0.27.0'
description = 'NumCosmo is a free software C library for cosmology calculations'
readme = 'README.md'
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: C",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
requires-python = '>=3.11'
license = {file = 'COPYING'}
authors = [
{name = 'Sandro Dias Pinto Vitenti', email = '[email protected]'},
{name = 'Mariana Penna-Lima', email = '[email protected]'}
]
[project.optional-dependencies]
test = [
"firecrown",
"pyccl",
"pydantic",
"pytest-lazy-fixtures",
"pytest",
"rich",
"sacc",
"tabulate",
"typer",
]
dev = [
"mypy",
"pylint",
"flake8",
]
[project.urls]
Repository = "https://github.com/NumCosmo/NumCosmo"
Documentation = "https://numcosmo.github.io/"
Changelog = "https://github.com/NumCosmo/NumCosmo/blob/master/ChangeLog.md"
[tool.setuptools.package-dir]
numcosmo_py = "numcosmo_py"
[tool.setuptools.package-data]
numcosmo_py = ["*.pyi", "py.typed"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
omit = ["*/external/*"]