-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
39 lines (36 loc) · 1020 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
[build-system]
requires = [
"setuptools >= 61.0",
"numpy"
]
build-backend = "setuptools.build_meta"
[project]
name = "pymaster"
version = "2.3.3"
authors = [
{name="David Alonso", email="[email protected]"}
]
description = "Library for pseudo-Cl computation"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"healpy",
"ducc0"
]
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: Unix',
'Operating System :: MacOS'
]
[project.urls]
Repository = "https://github.com/LSSTDESC/NaMaster.git"
Documentation = "https://namaster.readthedocs.io/en/latest/"
Changelog = "https://github.com/LSSTDESC/NaMaster/blob/master/CHANGELOG.md"
Issues = "https://github.com/LSSTDESC/NaMaster/issues"
[tool.setuptools]
packages = ["pymaster"]