-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
93 lines (84 loc) · 2.21 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
91
92
93
[project]
name = "tessilator"
authors = [
{name = "Alex Binks", email = "binks@astro.uni-tuebingen.de"},
{name = "Moritz Guenther", email = "hgunther@mit.edu"},
]
maintainers = [
{name = "Alex Binks", email = "binks@astro.uni-tuebingen.de"},
{name = "Moritz Guenther", email = "hgunther@mit.edu"},
]
description = "The one-stop shop for measuring TESS rotation periods"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.11.0"
keywords = ["TESS", "lightcurve", "star", "period"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy"
]
dynamic = ["version"]
dependencies = [
"astropy",
"numpy",
"astroquery",
"photutils",
"matplotlib",
"numpy>=1.20.0",
"scipy>=1.9.0",
"statsmodels",
"pyinputplus"
]
[project.optional-dependencies]
test = [
"pytest-astropy",
]
docs = [
"sphinx",
"sphinx-automodapi",
"sphinx-astropy",
"numpydoc"
]
[project.scripts]
run_tess_sectors = "tessilator.scripts.run_tess_sectors:main"
run_tess_cutouts = "tessilator.scripts.run_tess_cutouts:main"
[project.urls]
"Homepage" = "https://tessilator.readthedocs.io/"
"Source" = "https://github.com/alexbinks/tessilator"
"Issue tracker" = "https://github.com/alexbinks/tessilator/issues"
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = 'setuptools.build_meta'
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE", "other_licenses/*"]
[tool.setuptools.packages.find]
include = ["tessilator*"]
namespaces = true
[tool.setuptools.package-data]
"tessilator" = ["CITATION.cff"]
"tessilator.tests" = ["*_tests/*"]
[tool.setuptools_scm]
write_to = "tessilator/_version.py"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"tessilator",
"docs",
]
norecursedirs = [
"docs[\\/]_build",
"docs[\\/]generated"
]
addopts = [
"--color=yes",
"-v"
]
log_cli_level = "info"