Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install and run tests
working-directory: ${{ github.workspace }}
run: |
python setup.py install
pip install .
cd tests; xvfb-run python test_verify.py -v
# See https://github.community/t/status-check-for-a-matrix-jobs/127354/7
all-tests:
Expand Down
43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "PyForecastTools"
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = [
"numpy",
"matplotlib",
# "spacepy",
]
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
readme = "README.md"
classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
]

[project.urls]
homepage = "https://drsteve.github.io/PyForecastTools"
repository = "https://github.com/drsteve/PyForecastTools"

[tool.setuptools.dynamic]
version = {attr = "verify.__version__"}

[tool.setuptools.packages.find]
exclude = ["tests*"]
35 changes: 0 additions & 35 deletions setup.py

This file was deleted.

2 changes: 2 additions & 0 deletions verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@
from .metrics import *
from .categorical import *
from . import plot

__version__ = "1.1.1"