Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install with pyproject toml #12

Merged
merged 1 commit into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions pyproject.toml
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']
94 changes: 0 additions & 94 deletions setup.py

This file was deleted.

8 changes: 0 additions & 8 deletions src/scope/__init__.py
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"
Loading