-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
43 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "astrosource"
version = "1.7.1"
description = "Analysis script for sources with variability in their brightness"
readme = "README.md"
authors = [{ name = "Michael Fitzgerald", email = "[email protected]" },
{ name = "Edward Gomez", email = "[email protected]"}]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["astronomy", "time-series", "analysis"]
dependencies = [
"astropy>=4.3.1",
"astroquery",
"barycorrpy",
"beautifulsoup4",
"click",
"colorlog",
"matplotlib",
"numpy>=1.17",
"prettytable",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/zemogle/astrosource"
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
astrosource = "astrosource.main:main"
[tool.setuptools]
packages = ["astrosource"]