Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependencies from setup.py #274

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,25 @@ From conda-forge

micromamba install meeko

Other tools like ``mamba`` or ``conda`` can also be used. Note that ``conda``
is significantly slower.


From PyPI
------------------------
---------

.. code-block:: bash

pip install meeko

If using micromamba or a similar package manager, ``pip`` installs the package
in the active environment.
If using ``micromamba`` or a similar package manager, ``pip`` installs the
package in the active environment. The following dependencies required:
``python``, ``numpy``, ``scipy``, ``gemmi``, and ``rdkit``.

Installing with ``pip`` does not check for missing dependencies or attempt to
resolve conflicts between versions. That information is included on the
conda-forge recipe and used by a package manager like
``mamba`` or ``micromamba``.


From source
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ def find_files(directory):
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['numpy>=1.18', "rdkit", "scipy", "gemmi"],
python_requires='>=3.9, <3.12',
license="LGPL-2.1",
keywords=["molecular modeling", "drug design",
"docking", "autodock"],
Expand Down
Loading