-
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.
Merge pull request #25 from ahnaf-tahmid-chowdhury/pyproject
Update `pyproject.toml` Configuration
- Loading branch information
Showing
1 changed file
with
28 additions
and
13 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,29 +1,44 @@ | ||
# Build System Configuration | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
requires = ["setuptools", "setuptools_scm[toml]", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
# Project Metadata | ||
[project] | ||
name = "pydagmc" | ||
version = "0.0.0" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Patrick Shriwise", email = "[email protected]"}, | ||
{ name = "Patrick Shriwise", email = "[email protected]" }, | ||
{ name = "Paul Wilson", email = "[email protected]" }, | ||
{ name = "Paul Romano", email = "[email protected]" }, | ||
{ name = "Ethan Peterson", email = "[email protected]" }, | ||
{ name = "Ahnaf Tahmid Chowdhury", email = "[email protected]" }, | ||
] | ||
description = "A convenience interface for examining DAGMC models using PyMOAB" | ||
readme = "README.md" | ||
license = {text = "MIT"} | ||
dependencies = [ | ||
"numpy", | ||
"pymoab" | ||
] | ||
license = { text = "MIT" } | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3" | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering", | ||
"Programming Language :: Python :: 3", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = ["numpy"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/svalinn/pydagmc" | ||
|
||
|
||
# Optional Dependencies | ||
[project.optional-dependencies] | ||
test = ["pytest"] | ||
|
||
# Project URLs | ||
[project.urls] | ||
"Bug Tracker" = "https://github.com/svalinn/pydagmc/issues" | ||
"Source Code" = "https://github.com/svalinn/pydagmc" | ||
|
||
# Setuptools SCM Configuration | ||
[tool.setuptools_scm] |