-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (68 loc) · 2 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
[project]
name = "ocelot" # Required
version = "0.3.1-alpha" # Required
description = "A toolbox for working with observations of star clusters." # Optional
readme = "README.md" # Optional
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["astronomy", "star cluster", "threading", "development"] # Optional
authors = [
{ name = "Emily Hunt", email = "[email protected]" }, # Optional
]
maintainers = [
{ name = "Emily Hunt", email = "[email protected]" }, # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy>1.21.0,<3.0",
"numba<1.0",
"matplotlib>3.4.0,<4.0",
"scikit-learn>0.24.0,<2.0",
"scipy>1.0.0,<2.0",
"pandas>1.0.0,<3.0",
"pyarrow",
"astropy>4.0.0,<7.0",
"healpy>1.13.0,<2.0",
"galpy>1.9,<2.0",
"imf @ git+https://github.com/keflavich/imf",
"dustmaps",
]
[project.optional-dependencies]
dev = [
"check-manifest",
"pytest",
"mkdocs-material[imaging]",
"mkdocstrings[python]>=0.18",
"ruff",
"ezpadova @ git+https://github.com/mfouesneau/ezpadova",
]
docs = [
"mkdocs-material[imaging]",
"mkdocstrings[python]>=0.18",
] # For building docs on GitHub
test = ["pytest"]
[project.urls] # Optional
"Homepage" = "https://ocelot-docs.org"
"Bug Reports" = "https://github.com/emilyhunt/ocelot/issues"
"Source" = "https://github.com/emilyhunt/ocelot"
# [tool.setuptools]
# package-data = {"sample" = ["*.dat"]}
[tool.pytest.ini_options]
pythonpath = "src"
addopts = ["--import-mode=importlib"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88