Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pyproject.toml Configuration #25

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 28 additions & 13 deletions pyproject.toml
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]
Loading