-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
90 lines (80 loc) · 2.03 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
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "simmer"
authors = [
{name = "Arjun Savel", email = "asavel@gmail.com"},
{name= "Lea Hirsch"},
{name= "Holden Gill"},
{name= "Courtney D. Dressing"},
{name= "David R. Ciardi"}
]
description = "Stellar Image Maturation via Efficient Reduction"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"tqdm",
"pandas==1.2.3",
"astropy >=5.1",
"openpyxl>=2.5.12",
"scipy",
"matplotlib",
"Scikit-image>=0.16.2",
"pyyaml>=5.3.1",
"numba",
"emcee",
"cerberus>=1.3.2",
"photutils>=1.5.0",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["nbsphinx",
"nbconvert",
"pygments>=2.4.2",
"Jinja2==3.1.3",
"sphinx-book-theme"]
[project.urls]
Homepage = "https://github.com/arjunsavel/SImMER"
Issues = "https://github.com/arjunsavel/SImMER/issues"
Documentation = "https://simmer.readthedocs.io"
[tool.black]
line-length = 79
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| src/simmer/__init__.py
| docs/tutorials
)/
'''
[tool.isort]
skip_glob = ["docs/tutorials/*.py"]
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_third_party = ["PIL", "astropy", "emcee", "cerberus", "matplotlib", "nbconvert", "nbformat", "numpy", "openpyxl", "pandas", "photutils", "scipy", "setuptools", "skimage", "tqdm", "yaml", "numba"]