Skip to content

Commit

Permalink
Merge pull request #12 from arjunsavel/pyproject_toml
Browse files Browse the repository at this point in the history
install with pyproject toml
  • Loading branch information
arjunsavel authored Aug 18, 2024
2 parents 87dd108 + 27bf438 commit e7dadbf
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 102 deletions.
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"

0 comments on commit e7dadbf

Please sign in to comment.