-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
39 lines (35 loc) · 1.17 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
astroNN = ["./data/*.npy", "*.mplstyle"]
[project]
name = "astroNN"
version = "1.2.dev0"
dynamic = ["dependencies"]
requires-python = ">=3.10"
authors = [
{name = "Henry Leung", email = "henryskyleung@gmail.com"},
]
maintainers = [
{name = "Henry Leung", email = "henryskyleung@gmail.com"},
]
description = "Deep Learning for Astronomers with Keras"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/henrysky/astroNN"
Documentation = "http://astronn.readthedocs.io/"
Repository = "https://github.com/henrysky/astroNN"
"Bug Tracker" = "https://github.com/henrysky/astroNN/issues"
Changelog = "https://astronn.readthedocs.io/en/latest/history.html"