-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (77 loc) · 1.75 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
77
78
79
80
81
82
[build-system]
build-backend = "flit_core.buildapi"
requires = [ "flit_core >=2,<4",
"bump2version",
]
[project]
name = "hpmoc"
dynamic = ["version", "description"]
authors = [
{name = "Stefan Trklja Countryman", email = "[email protected]"}
]
maintainers = [
{name = "Albert Zhang", email = "[email protected]"}
]
classifiers = [ "Programming Language :: Python :: 3",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.21",
"matplotlib",
"astropy",
"astropy-healpix",
"typing_extensions",
]
readme = "README.md"
[project.optional-dependencies]
jup = ["jupyter", "ipython"]
test = [
"pytest",
"pytest-cov",
"h5py",
"PyYAML",
"mhealpy",
"ligo.skymap"
]
dev = [
"flit",
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
"astroquery",
"ligo-gracedb",
]
astroquery = ["astroquery"]
gracedb = ["ligo-gracedb"]
healpy = ["healpy"]
[project.urls]
Homepage = "https://github.com/markalab/hpmoc"
Documentation = "https://hpmoc.stc.sh/"
Repository = "https://github.com/markalab/hpmoc.git"
[tool.flit.sdist]
include = ["doc/"]
exclude = [
"Dockerfile",
".*",
"bin/",
"jup/",
"tests/",
]
[tool.ruff]
line-length = 79
target-version = "py37"
ignore = [
"E741",
]