Change propka31 to propka32.

This commit is contained in:
Nathan Baker
2020-06-17 15:25:50 -07:00
parent 4e7a41730d
commit 0c4979560d
4 changed files with 7 additions and 7 deletions

View File

@@ -5,8 +5,8 @@ Clone repository or unpack the tar ball and install with
pip install <source directory> pip install <source directory>
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 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 python -m propka

View File

@@ -24,10 +24,10 @@ required files):
cd <source directory> cd <source directory>
python setup.py install --user 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 as configured for setuptools, for instance `~/.local/bin`. You can
change the bin directory with the `--install-scripts` option. For 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: directory:
python setup.py install --user --install-scripts ~/bin 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 1. Clone the code from GitHub
2. `python setup.py install --user` 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 ## Examples
Calculate using pdb file Calculate using pdb file
propka31 1hpx.pdb propka32 1hpx.pdb
## Testing (for developers) ## Testing (for developers)

View File

@@ -45,7 +45,7 @@ See http://propka.org/ for the PROPKA web server.
], ],
packages=find_packages(exclude=['scripts']), packages=find_packages(exclude=['scripts']),
package_data={'propka': ['*.dat', '*.cfg']}, package_data={'propka': ['*.dat', '*.cfg']},
entry_points={'console_scripts': ['propka31 = propka.run:main', ]}, entry_points={'console_scripts': ['propka32 = propka.run:main', ]},
zip_safe=True, zip_safe=True,
python_requires='>=3.5', python_requires='>=3.5',
tests_require=["pandas", "numpy"], tests_require=["pandas", "numpy"],