|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "yt_xarray" |
| 7 | +version = "0.1.4" |
| 8 | +authors = [ |
| 9 | + { name= "Chris Havlin", email= "[email protected]" }, |
| 10 | +] |
| 11 | +description="interface between yt and xarray" |
| 12 | +readme = "README.md" |
| 13 | +requires-python = ">=3.9" |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Natural Language :: English", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | +] |
| 24 | +dependencies=['yt>=4.2.0', 'h5py>=3.4.0', 'pooch>=1.5.1', 'xarray'] |
| 25 | + |
| 26 | +[project.urls] |
| 27 | +"Homepage" = "https://github.com/data-exp-lab/yt_xarray" |
| 28 | +"Bug Tracker" = "https://github.com/data-exp-lab/yt_xarray/issues" |
| 29 | + |
| 30 | +[project.optional-dependencies] |
| 31 | +full = ["netCDF4", "scipy", "dask[complete]"] |
| 32 | +test = ["pytest", "pytest-cov"] |
| 33 | +docs = ["Sphinx==1.8.5", "jinja2<3.1.0", "nbsphinx"] |
| 34 | + |
1 | 35 | [tool.black] |
2 | 36 | line-length = 88 |
3 | | -target-version = ['py37'] |
| 37 | +target-version = ['py310'] |
4 | 38 |
|
5 | 39 | [tool.isort] |
6 | 40 | profile = "black" |
|
0 commit comments