forked from python-windrose/windrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (62 loc) · 1.52 KB
/
setup.cfg
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
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = windrose
version = attr: windrose.__version__
description = Python Matplotlib, Numpy library to manage wind data, draw windrose (also known as a polar rose plot)
author = Lionel Roubeyrie
maintainer = Sebastien Celles
author_email = s.celles@gmail.co
url = https://github.com/python-windrose/windrose
long_description_content_type = text/markdown
long_description = file: README.md
keywords = python, matplotlib, wind, windrose, compass
license = BCeCILL-B OR BSD-3-Clause
license_files =
LICENCE
LICENCE_BSD-3-Clause.TXT
LICENCE_CECILL-B.TXT
project_urls =
Documentation = https://python-windrose.github.io/windrose
Bug Tracker = https://github.com/python-windrose/windrose/issues
Source Code = https://github.com/python-windrose/windrose
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
[options]
zip_safe = True
include_package_data = True
install_requires =
matplotlib >=3
numpy >=1.21
python_requires = >=3.6
packages = find:
[options.packages.find]
exclude =
contrib
docs
tests
[options.extras_require]
advanced =
pandas
scipy
[sdist]
formats = gztar
[check-manifest]
ignore =
*.yaml
.coveragerc
docs
docs/*
notebooks
notebooks/*
tests
tests/*
paper
paper/*
*.pyc
.binder/
.binder/*