-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 896 Bytes
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
[project]
name = "xmacis2py"
version = "2.3"
description = "A Python package that brings the xmACIS2 Climate Analysis Tool into the Python Ecosystem"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE*"]
authors = [
{ name = "Eric J. Drewitz" },
]
keywords = ["meteorology", "atmospheric sciences"]
classifiers = [
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.7",
"wxdata>=1.6",
]
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # Look for packages in the src directory
[project.urls]
Documentation = "https://pypi.org/project/xmacis2py/"
Repository = "https://github.com/edrewitz/xmACIS2Py"