Skip to content

Commit

Permalink
Add pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
taylor-a-barnes committed Sep 22, 2023
1 parent c1444ff commit e7a864b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=42", "wheel", "cmake>=3.5.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pymdi"
dynamic = ["version"]
description = "A library that enables code interoperability via the MolSSI Driver Interface."
readme = "README.md"
authors = [
{ name = "Taylor Barnes", email = "[email protected]" }
]
license = { text = "BSD-3-Clause" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.7"
]

# Update the urls once the hosting is set up.
#[project.urls]
#"Source" = "https://github.com/<username>/{{cookiecutter.repo_name}}/"
#"Documentation" = "https://{{cookiecutter.repo_name}}.readthedocs.io/"

[dependencies]

[tool.setuptools]
packages = ["mdi"]
package-dir = { "mdi" = "MDI_Library" }

0 comments on commit e7a864b

Please sign in to comment.