-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
44 lines (40 loc) · 1.37 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Build System Configuration
[build-system]
requires = ["setuptools", "setuptools_scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
# Project Metadata
[project]
name = "pydagmc"
dynamic = ["version"]
authors = [
{ 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" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = ["numpy"]
# 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]