Change propka31 to propka32.
This commit is contained in:
4
INSTALL
4
INSTALL
@@ -5,8 +5,8 @@ Clone repository or unpack the tar ball and install with
|
||||
|
||||
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
|
||||
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
|
||||
|
||||
@@ -24,10 +24,10 @@ required files):
|
||||
cd <source directory>
|
||||
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)
|
||||
|
||||
|
||||
2
setup.py
2
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"],
|
||||
|
||||
Reference in New Issue
Block a user