-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.65 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
[build-system]
requires = ["setuptools>=45", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tdescore"
version = "1.1.0"
description = ""
authors = [
{name = "Robert Stein", email = "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
dependencies = [
"astropy >= 5.0.0",
"astroquery",
"backoff",
"jupyter",
"pathlib",
"numpy",
"scikit-learn",
"scipy",
"tqdm",
"iminuit",
"pre-commit",
"imbalanced-learn",
"xgboost",
"sncosmo",
"shap",
"sfdmap@git+https://github.com/robertdstein/sfdmap",
"extinction",
"penquins"
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pylint",
"coveralls",
"nuztf",
]
[project.urls]
Homepage = "https://github.com/robertdstein/tdescore"
[tool.setuptools]
packages = ["tdescore"]
[tool.coverage.run]
source = ["tdescore"]
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
disable=["logging-fstring-interpolation"]
good-names=["ax", "ra", "df", "pi", "i"]
extension-pkg-whitelist=["extinction"]