Skip to content

Commit

Permalink
belt and braces setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hkershaw-brown committed Aug 30, 2024
1 parent 47b1880 commit 5a93063
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,3 @@ Homepage = "https://github.com/NCAR/pyDARTdiags.git"
Issues = "https://github.com/NCAR/pyDARTdiags/issues"
Documentation = "https://ncar.github.io/pyDARTdiags"

[tool.hatch.build.targets.wheel]
packages = ["src/pydartdiags"]
28 changes: 25 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
from setuptools import setup

setup()
from setuptools import setup, find_packages

setup(
name="pydartdiags",
version="0.0.4",
packages=find_packages(where="src"),
package_dir={"": "src"},
author="Helen Kershaw",
author_email="hkershaw@ucar.edu",
description="Observation Sequence Diagnostics for DART",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/NCAR/pyDARTdiags.git",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"pandas>=2.2.0",
"numpy>=1.26",
"plotly>=5.22.0",
"pyyaml>=6.0.2"
],
)

0 comments on commit 5a93063

Please sign in to comment.