-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.64 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "numpy>=1.19.0", "Cython>=0.29.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lenstools"
dynamic = ["version"]
description = "Toolkit for Weak Gravitational Lensing analysis"
readme = "README.rst"
license = {text = "MIT"}
authors = [
{name = "Andrea Petri", email = "apetri@phys.columbia.edu"}
]
keywords = ["lensing", "astrophysics", "cosmology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.19.0",
"scipy>=1.9.0",
"pandas>=1.5.0",
"matplotlib>=3.5.0",
"astropy>=5.0.0",
"emcee>=3.0.0",
"numexpr>=2.8.0",
"ipython",
"sqlalchemy>=1.4.0",
]
[project.urls]
Homepage = "http://lenstools.readthedocs.org"
Documentation = "http://lenstools.readthedocs.org"
Repository = "https://github.com/apetri/LensTools"
[tool.setuptools]
packages = ["lenstools", "lenstools.image", "lenstools.catalog", "lenstools.statistics", "lenstools.utils", "lenstools.simulations", "lenstools.observations", "lenstools.pipeline", "lenstools.legacy", "lenstools.scripts", "lenstools.extern", "lenstools.tests"]
package-data = {"lenstools" = ["data/*"]}
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "lenstools.__version__"}