-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:mosdef-hub/gmso into rigid-bodies
- Loading branch information
Showing
5 changed files
with
70 additions
and
65 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 = "[email protected]"}, | ||
{name = "Justin Gilmer", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Nicholas Craven", email = "[email protected]"}, | ||
{name = "Chris Jones", email = "[email protected]"}, | ||
] | ||
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] |