-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Typing](ALL): Update typing from python 3.8 style to python 3.9
- Loading branch information
Showing
4 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ channels: | |
- bioconda | ||
- anaconda | ||
dependencies: | ||
- biobb_common ==4.2.0 | ||
- biobb_common ==5.0.0 | ||
- cp2k ==7.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="biobb_cp2k", | ||
version="4.2.0", | ||
version="5.0.0", | ||
author="Biobb developers", | ||
author_email="[email protected]", | ||
description="Biobb_cp2k is a BioBB category for CP2K QM package.", | ||
|
@@ -20,21 +20,19 @@ | |
packages=setuptools.find_packages(exclude=['docs', 'test']), | ||
package_data={'biobb_cp2k': ['py.typed']}, | ||
include_package_data=True, | ||
install_requires=['biobb_common==4.2.0'], | ||
python_requires='>=3.8', | ||
install_requires=['biobb_common==5.0.0'], | ||
python_requires='>=3.9', | ||
entry_points={ | ||
"console_scripts": [ | ||
"cp2k_run = biobb_cp2k.cp2k.cp2k_run:main", | ||
"cp2k_prep = biobb_cp2k.cp2k.cp2k_prep:main" | ||
] | ||
}, | ||
classifiers=( | ||
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Python :: 3.8", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX", | ||
), | ||
"Operating System :: POSIX" | ||
], | ||
) |