-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from arjunsavel/pyproject_toml
install with pyproject toml
- Loading branch information
Showing
3 changed files
with
64 additions
and
102 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,64 @@ | ||
[build-system] | ||
requires = ["setuptools>=64", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "scope" | ||
|
||
authors = [ | ||
{name = "Arjun Savel", email = "asavel@umd.edu"}, | ||
{name= "Megan Bedell"}, | ||
{name= "Eliza M.-R. Kempton"}, | ||
{name= "Peter Smith"}, | ||
{name= "Jacob L. Bean"}, | ||
{name= "Lily L. Zhao"}, | ||
{name= "Jorge A. Sanchez"}, | ||
{name= "Michael R. Line"}, | ||
] | ||
|
||
description = "Simulating high-resolution spectroscopy of exoplanet atmospheres." | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
keywords = ["astronomy"] | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"astropy>5.1", | ||
"scipy", | ||
"jax", | ||
"exoplanet", | ||
"tqdm", | ||
"numba", | ||
"scikit-learn>=1.3.0", | ||
"matplotlib", | ||
"pandas", | ||
"exoplanet-core", | ||
"pymc>=4" | ||
] | ||
|
||
dynamic = ["version"] | ||
|
||
[tool.setuptools_scm] | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://github.com/arjunsavel/scope" | ||
Issues = "https://github.com/arjunsavel/scope/issues" | ||
Documentation = "https://github.com/arjunsavel/scope" | ||
|
||
[tool.black] | ||
target_version = ['py310', 'py311'] | ||
|
||
[tool.black_nbconvert] | ||
target_version = ['py310', 'py311'] |
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 |
---|---|---|
@@ -1,9 +1 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__uri__ = "https://github.com/arjunsavel/scope" | ||
__author__ = "Arjun B. Savel, Megan Bedell, Eliza M.-R. Kempton, Peter Smith, Jacob L. Bean, Lily L. Zhao, Jorge A. Sanchez, and Michael R. Line" | ||
__email__ = "asavel@gmail.com" | ||
__license__ = "MIT" | ||
__version__ = "0.0.1-beta" | ||
__release__ = "0.0.1-beta" | ||
__description__ = "Simulating cross-correlation of planetary emission" |