Skip to content

Commit

Permalink
Fixed an issue with missing dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
hpparvi committed Aug 4, 2024
1 parent eb9eabe commit 26b8ef6
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "PyTransit"
version = "2.6.5"
version = "2.6.6"
description = 'Fast and painless exoplanet transit light curve modelling.'
authors=[{name='Hannu Parviainen', email='hpparvi@gmail.com'}]
classifiers=[
Expand All @@ -12,19 +16,18 @@ classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
]

keywords = ['astronomy', 'astrophysics', 'exoplanets']
dependencies = ["numpy", "numba", "scipy", "pandas", "xarray", "tables", "meepmeep", "pyopencl", "ldtk",
"semantic_version", "deprecated", "uncertainties", "pyrr", "seaborn", "emcee"]
requires-python = ">= 3.8"
readme = "README.md"
license = {text = "GPLv2"}
dynamic = ["dependencies"]

[project.urls]
homepage = 'https://github.com/hpparvi/PyTransit'

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools]
include-package-data = true
Expand Down

0 comments on commit 26b8ef6

Please sign in to comment.