Skip to content

Commit

Permalink
Further updates for pypi release
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstrutz11 committed Aug 11, 2021
1 parent 8d70ab6 commit c17db97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ Documentation is hosted at https://mine-database.readthedocs.io/en/latest/. It g
MINE-Database requires the use of [rdkit](https://rdkit.org/), which currently is unavailable to install on pip. Thus, we recommend you use conda to create a new environment and then install rdkit into that environment before proceeding:

`conda create -n mine`

`conda activate mine`

`conda install -c rdkit rdkit`

Then, use pip (in your conda environment) to install minedatabase:
Expand Down
11 changes: 1 addition & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@

from setuptools import setup


# Most arguments are set in the `setup.cfg`.
# TODO fix this
setup(version=0.1)

from setuptools import setup
import setuptools

Expand All @@ -22,13 +14,12 @@
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
install_requires=['mordred', 'pymongo', 'scikit-learn==0.23.2', 'seaborn'],
install_requires=['mordred', 'pymongo', 'scikit-learn<=0.23.2', 'seaborn'],
package_data={'minedatabase': ['data/*'],
'minedatabase.NP_Score': ['*.gz'],
'minedatabase.tests': ['data/*'],
},
include_package_data=True,
extras_require={},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit c17db97

Please sign in to comment.