-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from dvklopfenstein/dvk
Use pip3; Added src and src/bin modules to pmidcite package
- Loading branch information
Showing
8 changed files
with
27 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,7 +112,14 @@ https://ncbiinsights.ncbi.nlm.nih.gov/2017/11/02/new-api-keys-for-the-e-utilitie | |
|
||
## Installation | ||
To install from [**PyPI**](https://pypi.org/project/pmidcite/) | ||
```pip install pmidcite``` | ||
```pip3 install pmidcite``` | ||
|
||
To install locally | ||
``` | ||
$ git clone https://github.com/dvklopfenstein/pmidcite.git | ||
$ cd ./pmidcite | ||
$ pip3 install . | ||
``` | ||
|
||
# Contact | ||
[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PYTHON = python3 | ||
|
||
install: | ||
pip install . | ||
pip3 install . | ||
|
||
py: | ||
find src -name \*.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,21 +23,26 @@ | |
'pmidcite.icite', | ||
'pmidcite.icite.dnldr', | ||
'pmidcite.plot', | ||
'src', | ||
'src.bin', | ||
] | ||
|
||
PACKAGE_DIRS = {p:join('src', *p.split('.')) for p in PACKAGES} | ||
|
||
def get_long_description(): | ||
"""Return the contents of the README.md as a string""" | ||
dir_cur = abspath(dirname(__file__)) | ||
with open(join(dir_cur, 'README.md'), encoding='utf-8') as ifstrm: | ||
return ifstrm.read() | ||
# python3 | ||
#with open(join(dir_cur, 'README.md'), encoding='utf-8') as ifstrm: | ||
# python3 or python2 | ||
with open(join(dir_cur, 'README.md'), 'rb') as ifstrm: | ||
return ifstrm.read().decode("UTF-8") | ||
|
||
|
||
setup( | ||
name=NAME, | ||
## version=versioneer.get_version(), | ||
version='0.0.38', | ||
version='0.0.39', | ||
author='DV Klopfenstein, PhD', | ||
author_email='[email protected]', | ||
## cmdclass=versioneer.get_cmdclass(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Source""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Scripts module""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |