-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to pyproject.toml from setup.py
- Loading branch information
Showing
3 changed files
with
45 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "astroNN" | ||
version = "1.2.dev0" | ||
dynamic = ["dependencies"] | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{name = "Henry Leung", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Henry Leung", email = "[email protected]"}, | ||
] | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
numpy | ||
matplotlib | ||
scikit-learn | ||
pandas | ||
astropy | ||
astroquery | ||
torch | ||
ipython | ||
ipykernel |