-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
54 lines (47 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
# Build System Configuration
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.0", "wheel"]
build-backend = "setuptools.build_meta"
# Project Metadata
[project]
name = "pystell"
dynamic = ["version"]
authors = [
{ name = "Aaron Bader", email = "[email protected]" },
{ name = "Ahnaf Tahmid Chowdhury", email = "[email protected]" }]
license = { file = "LICENSE" }
description = "A Python library designed to facilitate the analysis and visualization of data from various plasma physics codes."
readme = "README.md"
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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
dependencies = ["netcdf4", "numpy", "scipy", "matplotlib"]
# Optional Dependencies
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx"]
# Project URLs
[project.urls]
"Bug Tracker" = "https://github.com/aaroncbader/pystell_uw/issues"
"Source Code" = "https://github.com/aaroncbader/pystell_uw"
# Setuptools Configuration
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
# Setuptools SCM Configuration
[tool.setuptools_scm]