-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update ci workflows and env file * uncomment mambaforge version * replace Mambaforge with Miniforge * Fix Miniforge name * fix version * update unit tests * fix variable name * add python 3.12 to test matrix * Replace setup.py with pyproject.toml file * update version in pyproject.toml, use mamba runner instead of miniconda * add comma * put version in __init__.py
- Loading branch information
1 parent
c2ad068
commit 0376b05
Showing
5 changed files
with
52 additions
and
127 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
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 |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
Simulation, | ||
System, | ||
) | ||
|
||
__version__ = "1.3.1" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2", "versioningit"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "flowermd" | ||
description = "Framework for building and running coplex simulaiton workflows with MosDeF and HOOMD-Blue." | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Chris Jones", email = "[email protected]"}, | ||
{name = "Marjan Albooyeh", email = "[email protected]"}, | ||
{name = "Eric Jankowski", email = "[email protected]"} | ||
] | ||
license= {text = "GPLv3"} | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
urls = {Homepage = "https://github.com/cmelab/flowermd"} | ||
requires-python = ">=3.10" | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
include-package-data = true | ||
license-files = ["LICENSE"] | ||
|
||
[tool.setuptools.packages] | ||
find = {namespaces = false} | ||
|
||
[tool.setuptools.package-data] | ||
flowermd = [ | ||
'"modules/**"', | ||
'"library/**"', | ||
'"assets/forcefields/**"', | ||
'"assets/molecule_files/**"', | ||
'"utils/**"', | ||
'"internal/**"', | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "flowermd.__version__"} |