From 0c4979560d0844c33bc201065a90837aad14d10c Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Wed, 17 Jun 2020 15:25:50 -0700 Subject: [PATCH] Change propka31 to propka32. --- INSTALL | 4 ++-- README.md | 8 ++++---- scripts/{propka31.py => propka32.py} | 0 setup.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename scripts/{propka31.py => propka32.py} (100%) diff --git a/INSTALL b/INSTALL index 6809d14..24b6241 100644 --- a/INSTALL +++ b/INSTALL @@ -5,8 +5,8 @@ Clone repository or unpack the tar ball and install with pip install -This will install the `propka31` script in your executable +This will install the `propka32` script in your executable directory. The `propka` Python module will also become available for import -and can be invoked in lieu of the `propka31` script via: +and can be invoked in lieu of the `propka32` script via: python -m propka diff --git a/README.md b/README.md index 8e518fa..aaab4fc 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ required files): cd python setup.py install --user -This will install the `propka31` script in your executable directory, +This will install the `propka32` script in your executable directory, as configured for setuptools, for instance `~/.local/bin`. You can change the bin directory with the `--install-scripts` option. For -example, in order to install in my `bin` directory in my home +example, in order to install in the `bin` directory in the home directory: python setup.py install --user --install-scripts ~/bin @@ -47,13 +47,13 @@ from within a virtual environment (e.g., via [virtualenv](https://pypi.org/proje 1. Clone the code from GitHub 2. `python setup.py install --user` -2. Run `propka31` with a .pdb file (see Examples) +2. Run `propka32` with a .pdb file (see Examples) ## Examples Calculate using pdb file - propka31 1hpx.pdb + propka32 1hpx.pdb ## Testing (for developers) diff --git a/scripts/propka31.py b/scripts/propka32.py similarity index 100% rename from scripts/propka31.py rename to scripts/propka32.py diff --git a/setup.py b/setup.py index 6fe4229..20dc5ef 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ See http://propka.org/ for the PROPKA web server. ], packages=find_packages(exclude=['scripts']), package_data={'propka': ['*.dat', '*.cfg']}, - entry_points={'console_scripts': ['propka31 = propka.run:main', ]}, + entry_points={'console_scripts': ['propka32 = propka.run:main', ]}, zip_safe=True, python_requires='>=3.5', tests_require=["pandas", "numpy"],