Skip to content

Commit

Permalink
Added src and src/bin to package modules to support scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dvklopfenstein committed Nov 28, 2022
1 parent 4a94e4d commit 489c2c3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Summary

* [**Unreleased**](#unreleased)
* [**Release 2022-11-26 v0.0.38**](#release-2022-11-28-v0039) pip3, not pip from Python2
* [**Release 2022-11-26 v0.0.38**](#release-2022-11-26-v0038) Added instructions, and console_script to run script, icite
* [**Release 2022-09-27 v0.0.37**](#release-2022-09-27-v0037) Remove unused package in setup.py
* [**Release 2022-07-03 v0.0.36**](#release-2022-07-03-v0036) Change citation count on GitHub repo card
Expand Down Expand Up @@ -40,6 +41,10 @@

### Unreleased

### release 2022-11-29 v0.0.39
* CHANGED `pip install .` to `pip3 install .` in makefile and README.md
* ADDED `src` and `src.bin` to package modules

### release 2022-11-26 v0.0.38
* ADDED instructions for loading locally to README.md [#43](https://github.com/dvklopfenstein/pmidcite/issues/43)
* ADDED entry_points, console_scripts, icite to setup.py [#42](https://github.com/dvklopfenstein/pmidcite/issues/42)
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
'pmidcite.icite',
'pmidcite.icite.dnldr',
'pmidcite.plot',
'src',
'src.bin',
]

PACKAGE_DIRS = {p:join('src', *p.split('.')) for p in PACKAGES}
Expand All @@ -40,7 +42,7 @@ def get_long_description():
setup(
name=NAME,
## version=versioneer.get_version(),
version='0.0.38',
version='0.0.39',
author='DV Klopfenstein, PhD',
author_email='dvklopfenstein@protonmail.com',
## cmdclass=versioneer.get_cmdclass(),
Expand Down
2 changes: 1 addition & 1 deletion src/pmidcite/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version of pmidcite project"""

__version__ = '0.0.38'
__version__ = '0.0.39'

0 comments on commit 489c2c3

Please sign in to comment.