Skip to content

Commit

Permalink
Merge pull request #34 from arjunsavel/use_toml_file
Browse files Browse the repository at this point in the history
switch to toml file
  • Loading branch information
arjunsavel authored Mar 12, 2024
2 parents 33bce49 + 8cc49f9 commit 4b0a683
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 96 deletions.
51 changes: 51 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "cortecs"

authors = [
{name = "Arjun Savel", email = "[email protected]"},
{name= "Megan Bedell"},
{name= "Eliza M.-R. Kempton"},
]
description = "Compress opacity for radiative transfer"
readme = "README.md"
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"jaxlib",
"jax",
"tqdm",
"h5py",
"matplotlib",
"pandas",
]
dynamic = ["version"]



[project.optional-dependencies]
neural_networks = ["tensorflow<2.16",
"keras"]

[project.urls]
Homepage = "https://github.com/arjunsavel/cortecs"
Issues = "https://github.com/arjunsavel/cortecs/issues"
Documentation = "https://cortecs.readthedocs.io"
96 changes: 0 additions & 96 deletions setup.py

This file was deleted.

0 comments on commit 4b0a683

Please sign in to comment.