-
-
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 #44 from dvklopfenstein/dvk
v0.0.38 Move install to first make target; Add icite to console scripts
- Loading branch information
Showing
10 changed files
with
61 additions
and
20 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
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
from os.path import join | ||
# from distutils.core import setup | ||
from glob import glob | ||
from pathlib import PurePosixPath | ||
from setuptools import setup | ||
# import versioneer | ||
|
||
|
@@ -26,7 +25,7 @@ | |
'pmidcite.plot', | ||
] | ||
|
||
PACKAGE_DIRS = {p:join('src', PurePosixPath(*p.split('.'))) for p in PACKAGES} | ||
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""" | ||
|
@@ -38,14 +37,21 @@ def get_long_description(): | |
setup( | ||
name=NAME, | ||
## version=versioneer.get_version(), | ||
version='0.0.37', | ||
author='DV Klopfenstein', | ||
version='0.0.38', | ||
author='DV Klopfenstein, PhD', | ||
author_email='[email protected]', | ||
## cmdclass=versioneer.get_cmdclass(), | ||
packages=PACKAGES, | ||
package_dir=PACKAGE_DIRS, | ||
# https://stackoverflow.com/questions/18787036/difference-between-entry-points-console-scripts-and-scripts-in-setup-py | ||
# https://stackoverflow.com/questions/45114076/python-setuptools-using-scripts-keyword-in-setup-py | ||
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#scripts | ||
scripts=glob('src/bin/*.py'), | ||
entry_points={ | ||
'console_scripts':[ | ||
'icite=src.bin.icite:main', | ||
], | ||
}, | ||
# https://pypi.org/classifiers/ | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
|
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.37' | ||
__version__ = '0.0.38' |
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
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