Skip to content

Commit

Permalink
Switch to modern build/install system
Browse files Browse the repository at this point in the history
commit e7926d4fdd0bf5abac7a52dbf17b5780aea08a77
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 17:50:23 2024 -0400

    Improve package build process

    • Exclude tests, data files, Docker, and documentation, and several individual files.

commit b311e6dbb07fc48ae0b257e4089e528d53a00758
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 16:46:25 2024 -0400

    Do not track _version.py

commit ea06db33057d94cc9be67af9c22c6bb61ea02bf1
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 16:44:04 2024 -0400

    Do not track _version.py

commit 5a1928c84313f09cc8db78d7dbb2782aaff14d34
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 15:06:07 2024 -0400

    Delete .travis.yml

commit ee3b7391840cb6f5dd7e0c73e4d9266c9cc633ee
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 13:58:23 2024 -0400

    Update pyproject.toml

commit 0aeb2dface2be507ee7ee41c7b91c1b1eab0ff28
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 13:57:37 2024 -0400

    More versioneer purging

commit 424b45bc959bb9f570df7a951bd5e2ab7874ed1b
Author: Aleksandar Jelenak <[email protected]>
Date:   Wed Jul 10 12:47:46 2024 -0400

    Switch from versioneer to setuptools_scm

commit fdd2fd2c89f453c0069db9d73d5a7552aa10a640
Author: Aleksandar Jelenak <[email protected]>
Date:   Tue Jul 9 22:38:53 2024 -0400

    Update pyproject.toml

commit db48792b2b2c499626a039d0260a87c6255c9784
Author: Aleksandar Jelenak <[email protected]>
Date:   Tue Jul 9 19:37:39 2024 -0400

    Transfer info from setup.cfg to pyproject.toml

commit 2319309a24c1a812c368753c13ebcd3f83f67ec4
Merge: 415256d 9958744
Author: Aleksandar Jelenak <[email protected]>
Date:   Tue Jul 9 12:29:02 2024 -0400

    Merge branch 'master' into new-setup

    # Conflicts:
    #	setup.py

commit 415256d4005810bbe1737572b860cac0db324d5a
Author: Aleksandar Jelenak <[email protected]>
Date:   Mon Jan 24 15:53:28 2022 -0500

    Initial new setup files
  • Loading branch information
ajelenak committed Jul 10, 2024
1 parent 9958744 commit a49f106
Show file tree
Hide file tree
Showing 9 changed files with 88 additions and 2,885 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var/
*.egg-info/
.installed.cfg
*.egg?
/h5json/_version.py

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

9 changes: 8 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
include versioneer.py
global-exclude *~ *.py[cod]
exclude .git* .readthedocs.yaml CONTRIBUTING.rst testall.py
prune .github/
prune Docker/
prune docs/
prune test/
prune data/
prune **/__pycache
include h5json/_version.py
6 changes: 3 additions & 3 deletions h5json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@


"""
This is the h5json package, a mapping between HDF5 objects and JSON
This is the h5json package, a mapping between HDF5 objects and JSON
"""

from __future__ import absolute_import

from .hdf5dtype import getTypeItem
from .hdf5dtype import getTypeResponse
from .hdf5dtype import getItemSize
from .hdf5dtype import createDataType
from .hdf5db import Hdf5db

from . import _version

__version__ = _version.get_versions()["version"]
__version__ = _version.__version__
Loading

0 comments on commit a49f106

Please sign in to comment.