Skip to content

Commit

Permalink
Bump version and add to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmw committed Oct 21, 2022
1 parent 177c3db commit 8974b15
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ __pycache__
.ipynb_checkpoints
.spyproject
build
hdf5eis.egg-info
HDF5eis.egg-info
hdf5eis.egg-info
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ with hdf5eis.File("demo.hdf5", mode="w") as demo_file:
# Installation

```bash
>$ pip install .
>$ pip install hdf5eis
```
2 changes: 1 addition & 1 deletion hdf5eis/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.0a1'
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'

[project]
name = 'HDF5eis'
version = '0.1.0a1'
authors = [
{name='Malcolm C. A. White', email='malcolmw@mit.edu'}
]
description = 'A solution for handling big, multidimensional timeseries data from environmental sensors in HPC applications.'
readme = 'README.md'
requires-python = '>=3.6'
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
def configure():
# Initialize the setup kwargs
kwargs = {
"name": "hdf5eis",
"name": "HDF5eis",
"version": version,
"author": "Malcolm White",
"author": "Malcolm C. A. White",
"author_email": "malcolmw@mit.edu",
"maintainer": "Malcolm C. A. White",
"maintainer_email": "malcolmw@mit.edu",
Expand Down

0 comments on commit 8974b15

Please sign in to comment.