Skip to content

Commit

Permalink
Merge pull request #58 from harripd/master
Browse files Browse the repository at this point in the history
Updates for 0.9.1
  • Loading branch information
harripd authored May 24, 2024
2 parents 651719a + 3e7e5bb commit 7a032d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 90 deletions.
80 changes: 0 additions & 80 deletions appveyor.yml

This file was deleted.

10 changes: 3 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,9 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('..'))
import phconvert
version = phconvert.__version__
if on_rtd:
# RTD modifies conf.py so the git repo becomes dirty
# We strip the '-dirty' that would generate a wrong verion string
version = version.replace('.dirty', '')
release = version
from importlib.metadata import version as get_version
release = get_version('phconvert')
version = '.'.join(version.split('.')[:2])


# -- General configuration ------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ authors = [
{name="Antonino Ingargiola", email="tritemio@gmail.com"},
{name="Paul David Harris", email="harripd@gmail.com"}
]
maintainers = [{name="Paul David Harris", email="harripd@gmail.com"}, ]
description = "Convert Beker&Hickl, PicoQuant and other formats to Photon-HDF5."
readme = "README.md"
license = {file = "LICENSE.txt"}
Expand Down Expand Up @@ -39,17 +40,17 @@ requires-python = ">= 3.6"
dependencies = [
"numpy>=1.19",
"tables",
'importlib_resources;python_version<"3.10"'
'importlib_resources;python_version<="3.10"'
]

[project.urls]
Homepage = "http://photon-hdf5.github.io/phconvert/"
Documentation = "https://phconvert.readthedocs.io/en/latest/"
Repositors = "https://github.com/Photon-HDF5/phconvert"
Repositories = "https://github.com/Photon-HDF5/phconvert"
Issues = "https://github.com/Photon-HDF5/phconvert/issues"

[tool.setuptools.packages.find]
include = ['phconvert']
include = ['phconvert*']

[tool.setuptools.package-data]
"phconvert.specs" = ["*.json",]
Expand Down

0 comments on commit 7a032d9

Please sign in to comment.