-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
76 lines (69 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools==64.0.3',
'setuptools_scm[toml]>=6.2',
'wheel',
]
[project]
name = 'micmac'
authors = [
{name = 'Magdy Morshed', email = 'morshed@apc.in2p3.fr'},
{name = 'Arianna Rizzieri', email = 'rizzieri@apc.in2p3.fr'},
]
maintainers = [
{name = 'Magdy Morshed', email = 'morshed@apc.in2p3.fr'},
{name = 'Arianna Rizzieri', email = 'rizzieri@apc.in2p3.fr'},
]
description = 'Minimally Informed CMB MAp Constructor (MICMAC) for CMB polarization data'
readme = 'README.md'
keywords = [
'scientific computing',
]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
]
requires-python = '>=3.7'
license = {file = 'LICENSE'}
dependencies = [
'healpy>=0.16.6',
'jax>=0.4.27',
'numpy',
'scipy',
'pysm3',
'cmbdb @ git+https://github.com/dpole/cmbdb.git',
'jaxlib',
'jax-tqdm',
'jax-healpy',
'numpyro',
'chex',
'anytree',
]
dynamic = ['version']
[project.optional-dependencies]
full = [
'camb',
'lineax',
'matplotlib',
'jaxopt',
'toml',
]
[project.urls]
homepage = 'https://scipol.in2p3.fr/micmac'
repository = 'https://github.com/CMBSciPol/MICMAC'
[[tool.mypy.overrides]]
module = [
'micmac',
]
ignore_missing_imports = true
[tool.setuptools]
packages = ["micmac"]
[tool.setuptools_scm]
# version_scheme = 'release'
# fallback_version = '0.0.0'
# local_scheme = "no-local-version"
# write_to = "micmac/_version.py"