-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace
setup.py
with pyproject.toml
, update actions to latest ve…
…rsions (#865) * Replace setup.py with pyproject.toml, update action versions * Pin hoomd to <5.0 * add command to run mamba list after updating environment * add latest env, install all mosdef from source, update bleeding edge CI * add dynamic version to project.toml * remove dynamic versioning w/setuptools * fix dynamic version * use setup tools for dynamic versioning instead of versioningit * just use environment-dev.yml with new env changes * fix python versions in env * add back create-args to bleeding edge test * update env file * remove bump2version
- Loading branch information
1 parent
54e3b13
commit 8b3cf4b
Showing
5 changed files
with
71 additions
and
66 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
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,44 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "gmso" | ||
description = "A flexible storage of chemical topology for molecular simulation." | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Matthew W Thompson", email = "matt.thompson@vanderbilt.edu"}, | ||
{name = "Justin Gilmer", email = "justin.b.gilmer@vanderbilt.edu"}, | ||
] | ||
maintainers = [ | ||
{name = "Nicholas Craven", email = "nicholas.c.craven@vanderbilt.edu"}, | ||
{name = "Chris Jones", email = "chrisjones4@u.boisestate.edu"}, | ||
] | ||
license= {text = "MIT"} | ||
classifiers=[ | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
] | ||
urls = {Homepage = "https://github.com/mosdef-hub/gmso"} | ||
requires-python = ">=3.9" | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
include-package-data = true | ||
license-files = ["LICENSE"] | ||
|
||
[tool.setuptools.packages] | ||
find = {namespaces = false} | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "gmso.__version__"} |
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 |
---|---|---|
|
@@ -22,6 +22,4 @@ omit = | |
|
||
[bumpversion:file:gmso/__init__.py] | ||
|
||
[bumpversion:file:setup.py] | ||
|
||
[bumpversion:file:docs/conf.py] |