-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (57 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
71 lines (57 loc) · 1.42 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
68
69
70
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "EXPtools"
version = "0.2.2"
authors = [
{ name="Nico Garavito-Camargo", email="ngaravito@flatironinstitute.org" },
{ name="Arpit Arora", email="arora125@sas.upenn.edu"},
]
description = "Library to analyze and visualize basis function expansions using pyEXP"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["astronomy", "dynamics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy>=2.0",
"scipy>=1.8",
"astropy>=5.0",
"pyyaml",
"gala>=1.6",
"h5py>=3.9.0",
"matplotlib>=3.8",
"healpy",
"k3d>=2.16.1", # Make this ones optional
]
[project.optional-dependencies]
# development dependency groups
test = [
'pylint>=3.2.6',
'pytest>=8.3.2'
]
[tool.setuptools.packages.find]
where = ["."]
include = ["EXPtools", "EXPtools.*"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
warn_unused_ignores = true
warn_return_any = true
[[tool.mypy.overrides]]
module = [
"pyEXP.*",
"astropy.*",
"healpy.*",
"k3d.*",
]
ignore_missing_imports = true
[tool.setuptools.package-data]
EXPtools = ["visuals/*.mplstyle"]
[project.urls]
Homepage = "https://github.com/EXP_code/EXPtools/"
Issues = "https://github.com/EXP_code/EXPtools/issues"