Skip to content

Commit

Permalink
Adjusted python versions to accomodate prody
Browse files Browse the repository at this point in the history
  • Loading branch information
nbruciaferri committed May 22, 2024
1 parent dcd7016 commit 03d4168
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def find_files(directory):
include_package_data=True,
zip_safe=False,
install_requires=['numpy>=1.18'],
python_requires='>=3.5',
python_requires='>=3.5, <3.12',
license="LGPL-2.1",
keywords=["molecular modeling", "drug design",
"docking", "autodock"],
Expand All @@ -44,24 +44,19 @@ def find_files(directory):
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
#'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: C++',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries'
],
entry_points={
'console_scripts': [
'mk_export=meeko.cli.mk_export:main',
'mk_prepare_ligand=meeko.cli.mk_prepare_ligand:main',
'mk_prepare_receptor=meeko.cli.mk_prepare_receptor:main'
'mk_export.py=meeko.cli.mk_export:main',
'mk_prepare_ligand.py=meeko.cli.mk_prepare_ligand:main',
'mk_prepare_receptor.py=meeko.cli.mk_prepare_receptor:main'
]
}
)

0 comments on commit 03d4168

Please sign in to comment.