Skip to content

Commit

Permalink
added needed packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sastrys1 committed Mar 18, 2024
1 parent 3a5a15b commit 37b3b78
Showing 1 changed file with 56 additions and 50 deletions.
106 changes: 56 additions & 50 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
from setuptools import find_packages, setup

# NOTE: The following reads the version number and makes
# if available to the packaging tools before installation.
# REF: https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package # noqa: E501
# This makes __version__ valid below
# if available to the packaging tools before installation.
# REF: https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package # noqa: E501
# This makes __version__ valid below
with open("pdb2pqr/_version.py") as fobj:
exec(fobj.read())

Expand All @@ -47,75 +47,81 @@
author="Jens Erik Nielsen, Nathan Baker, and many others.",
author_email="nathanandrewbaker@gmail.com",
description=(
"Automates many of the common tasks of preparing structures for "
"continuum solvation calculations as well as many other types of "
"biomolecular structure modeling, analysis, and simulation."
"Automates many of the common tasks of preparing structures for "
"continuum solvation calculations as well as many other types of "
"biomolecular structure modeling, analysis, and simulation."
),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=[
"mmcif_pdbx>=1.1.2",
"numpy",
"propka >= 3.5",
"requests",
"docutils < 0.18",
"mmcif_pdbx>=1.1.2",
"numpy",
"propka >= 3.5",
"requests",
"docutils < 0.18",
"torch",
"torchani = 2.2.0",
"ase",
"joblib",
"ambertools",
"scipy"
],
url="http://www.poissonboltzmann.org",
packages=find_packages(
exclude=["pdb2pka", "*.pdb2pka", "pdb2pka.*", "*.pdb2pka.*"]
exclude=["pdb2pka", "*.pdb2pka", "pdb2pka.*", "*.pdb2pka.*"]
),
package_data={
"pdb2pqr": ["dat/*.xml", "dat/*.DAT", "dat/*.names", "dat/*.joblib"]
"pdb2pqr": ["dat/*.xml", "dat/*.DAT", "dat/*.names", "dat/*.joblib"]
},
python_requires=">=3.5",
extras_require={
"dev": ["check-manifest"],
"test": [
"black",
"coverage",
"flake8",
"pandas >= 1.0",
"pytest",
"testfixtures",
],
"dev": ["check-manifest"],
"test": [
"black",
"coverage",
"flake8",
"pandas >= 1.0",
"pytest",
"testfixtures",
],
},
tests_require=[
"pandas >= 1.0",
"pytest",
"testfixtures",
"pandas >= 1.0",
"pytest",
"testfixtures",
],
test_suite="tests",
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
],
project_urls={
"Documentation": "https://pdb2pqr.readthedocs.io/",
"Get help": "https://github.com/Electrostatics/pdb2pqr/issues",
"Publications": "https://pubmed.ncbi.nlm.nih.gov/?term=R01+GM069702",
"Funding": "https://bit.ly/apbs-funding",
"Source": "https://github.com/Electrostatics/pdb2pqr",
"Documentation": "https://pdb2pqr.readthedocs.io/",
"Get help": "https://github.com/Electrostatics/pdb2pqr/issues",
"Publications": "https://pubmed.ncbi.nlm.nih.gov/?term=R01+GM069702",
"Funding": "https://bit.ly/apbs-funding",
"Source": "https://github.com/Electrostatics/pdb2pqr",
},
keywords="science chemistry molecular biology",
entry_points={
"console_scripts": [
"pdb2pqr=pdb2pqr.main:main",
"pdb2pqr30=pdb2pqr.main:main",
"dx2cube=pdb2pqr.main:dx_to_cube",
"inputgen=pdb2pqr.inputgen:main",
]
"console_scripts": [
"pdb2pqr=pdb2pqr.main:main",
"pdb2pqr30=pdb2pqr.main:main",
"dx2cube=pdb2pqr.main:dx_to_cube",
"inputgen=pdb2pqr.inputgen:main",
]
},
)

0 comments on commit 37b3b78

Please sign in to comment.