-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.21 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
[project]
name = "pandas-rose"
description = "A simple Pandas accessor to make windrose plots."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "Brian Blaylock", email = "blaylockbk@gmail.com" }]
maintainers = [{ name = "Brian Blaylock", email = "blaylockbk@gmail.com" }]
classifiers = ["Programming Language :: Python"]
keywords = ["weather", "meteorology", "wind"]
dependencies = ["matplotlib", "numpy", "pandas"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/blaylockbk/pandas-rose"
"Documentation" = "https://github.com/blaylockbk/pandas-rose"
"Repository" = "https://github.com/blaylockbk/pandas-rose"
"Changelog" = "https://github.com/blaylockbk/pandas-rose/releases"
"Bug Tracker" = "https://github.com/blaylockbk/pandas-rose/issues"
[project.optional-dependencies]
docs = ["mkdocs-material", "mkdocs-jupyter"]
test = ["pytest", "black"]
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["rose"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
write_to = "rose/_version.py"
[tool.isort]
profile = "black"