Skip to content

Commit

Permalink
Added versioneer + misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelRobidas committed Jan 16, 2022
1 parent 146f852 commit 0a7fa29
Show file tree
Hide file tree
Showing 10 changed files with 2,781 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
pip install setuptools wheel twine build
python -m build --sdist --wheel --outdir dist/ .
- name: Publish to PyPI
if: github.repository == 'cyllab/ccinput'
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_TOKEN }}
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include versioneer.py
include ccinput/_version.py
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ end

## Installation
### From PyPI
Package coming soon.
```
pip install ccinput
```

### From Github
You can install the bleeding-edge version of `ccinput` from Github:
```
$ pip install git+https://github.com/cyllab/ccinput
pip install git+https://github.com/cyllab/ccinput
```

## Usage
Expand Down
3 changes: 3 additions & 0 deletions ccinput/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit 0a7fa29

Please sign in to comment.