Skip to content

Commit

Permalink
fix wrong project details
Browse files Browse the repository at this point in the history
  • Loading branch information
akoumjian committed May 16, 2024
1 parent 629bfe9 commit 3256373
Showing 1 changed file with 41 additions and 15 deletions.
56 changes: 41 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,42 @@
[project]
name = "adam-assist"
name = "adam_core"
version = "0.1.0"
description = 'ADAM Core Propagator class using ASSIST'
authors = [
{ name = "Alec Koumjian", email = "[email protected]" },
{ name = "Kathleen Kiker" }
{ name = "Kathleen Kiker", email = "[email protected]" },
{ name = "Alec Koumjian", email = "[email protected]" },
{ name = "Joachim Moeyens", email = "[email protected]" },
{ name = "Spencer Nelson", email = "[email protected]" },
{ name = "Nate Tellis", email = "[email protected]" },
]
description = "Core libraries for the ADAM platform"
readme = "README.md"
keywords = []
requires-python = ">=3.11,<4.0"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"adam-core @ git+https://github.com/B612-Asteroid-Institute/adam_core.git@main",
"assist",
"naif-de440",
"numpy",
"ray",
"spiceypy>=6.0.0"
"astropy",
"astroquery",
"healpy",
"jax",
"jaxlib",
"numpy<1.25",
"pyarrow>=13.0.0",
"pandas",
"ray",
"requests",
"scipy",
"spiceypy",
"quivr@git+https://github.com/moeyensj/quivr@concatenate-empty-attributes",
"mpc-obscodes",
"naif-de440",
"naif-leapseconds",
"naif-eop-high-prec",
"naif-eop-predict",
"naif-eop-historical",
"naif-earth-itrf93",
]

[build-system]
Expand All @@ -38,9 +59,9 @@ coverage = "pytest --cov --cov-report xml"


[project.urls]
"Documentation" = "https://github.com/unknown/adam-assist#readme"
"Issues" = "https://github.com/unknown/adam-assist/issues"
"Source" = "https://github.com/unknown/adam-assist"
"Documentation" = "https://github.com/B612-Asteroid-Institute/adam_core#README.md"
"Issues" = "https://github.com/B612-Asteroid-Institute/adam_core/issues"
"Source" = "https://github.com/B612-Asteroid-Institute/adam_core"


[project.optional-dependencies]
Expand Down Expand Up @@ -69,6 +90,11 @@ line-length = 88
[tool.isort]
profile = "black"

[tool.ruff]
line-length = 110
target-version = "py311"
lint.ignore = []
exclude = ["build"]

[tool.pytest.ini_options]
# In order for namespace packages to work during tests,
Expand Down

0 comments on commit 3256373

Please sign in to comment.