-
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.
* Adds a more descriptive error for isolation * Updates version and requirements for pypi * Updates version and tests pypi deployment * Adds egg to gitignore, changes project name * Updates names of the actions to reflect which ones work on py vs conda * Updates the name of the project to poli-base for pypi * Updates the name of the project to poli-core
- Loading branch information
1 parent
a14a954
commit ece48b7
Showing
14 changed files
with
35 additions
and
83 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli base (conda, py3.10) | ||
name: poli base (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli dockstring (conda, py3.10) | ||
name: poli dockstring (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli lambo (conda, py3.10) | ||
name: poli lambo (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli protein (conda, py3.10) | ||
name: poli protein (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli rmf (conda, py3.10) | ||
name: poli rmf (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: poli tdc (conda, py3.10) | ||
name: poli tdc (py3.10) | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
__pycache__ | ||
.idea | ||
/src/poli/config.rc | ||
src/poli.egg-info/ | ||
*.egg-info/ | ||
temp | ||
build | ||
.tox | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ requires = ["setuptools<=68"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "poli" | ||
version = "1.0.0.dev14" | ||
name = "poli-core" | ||
version = "1.0.1" | ||
description = "poli, a library of discrete objective functions" | ||
readme = "README.md" | ||
authors = [{name="Miguel González-Duque", email="[email protected]"}, {name="Simon Bartels"}] | ||
authors = [{name="Miguel González-Duque", email="[email protected]"}, {name="Simon Bartels", email="[email protected]"}] | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -19,13 +19,17 @@ classifiers = [ | |
"Topic :: Scientific/Engineering :: Chemistry", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Development Status :: 3 - Alpha", | ||
"Operating System :: MacOS", | ||
"Operating System :: Unix", | ||
] | ||
keywords = ["optimization", "molecular", "discrete", "proteins"] | ||
dependencies = [ | ||
"numpy<2", | ||
"rdkit", | ||
"selfies" | ||
] | ||
requires-python = ">=3.9" | ||
|
||
[project.optional-dependencies] | ||
foldx = [ | ||
|
@@ -79,7 +83,7 @@ profile = "black" | |
exclude = ["src/poli/core/util/proteins/rasp/inner_rasp", "src/poli/objective_repository/gfp_cbas"] | ||
|
||
[tool.bumpversion] | ||
current_version = "1.0.0.dev13" | ||
current_version = "1.0.1" | ||
parse = """(?x) | ||
(?P<major>0|[1-9]\\d*)\\. | ||
(?P<minor>0|[1-9]\\d*)\\. | ||
|
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 |
---|---|---|
@@ -1,15 +1,24 @@ | ||
[metadata] | ||
name = poli | ||
version = "1.0.0.dev13" | ||
name = poli-core | ||
version = "1.0.1" | ||
author = Miguel González-Duque | ||
author_email = [email protected] | ||
description = A library of discrete objective functions | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Intended Audience :: Education | ||
Intended Audience :: Science/Research | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
Topic :: Scientific/Engineering :: Chemistry | ||
Topic :: Scientific/Engineering :: Mathematics | ||
Topic :: Scientific/Engineering :: Artificial Intelligence | ||
Development Status :: 3 - Alpha | ||
Operating System :: MacOS | ||
Operating System :: Unix | ||
|
||
[options] | ||
package_dir = | ||
|
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
This file was deleted.
Oops, something went wrong.