-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
48 lines (46 loc) · 1.4 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
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[metadata]
name = sunburst
description = Use matplotlib to plot sunburst charts/hierarchical pie charts/ring charts/multilevel pie charts (as e.g. in disk usage diagrams).
author = Kilian Lieret
author_email = [email protected]
maintainer = Kilian Lieret
maintainer_email = [email protected]
url = https://github.com/klieret/sunburst
version = file: sunburst/version.txt
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD
license_file = LICENSE.txt
python_requires = >=3.6
project_urls =
Bug Tracker = https://github.com/klieret/sunburst/issues
Documentation = https://sunburst.readthedocs.io/
Source Code = https://github.com/klieret/sunburst/
keywords =
plot
matplotlib
pyplot
sunburst
pie chart
multilevel pie chart
disk usage diagram
ring chart
hierarchical pie chart
classifiers =
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
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
packages = find:
include_package_data = True
zip_safe = False
install_requires =
matplotlib
typing
pytest