-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.57 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='mlx.treemap',
use_scm_version={
'write_to': 'mlx/__treemap_version__.py'
},
setup_requires=['setuptools-scm>=6.0.0,<7.*'],
url='https://github.com/melexis/treemap',
license='Apache License, Version 2.0',
author='Jasper Craeghs',
author_email='[email protected]',
description='Sphinx extension to generate a treemap of Cobertura data',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(exclude=['tests', 'doc']),
install_requires=['plotly', 'kaleido', 'pandas'],
python_requires='>=3.6',
namespace_packages=['mlx'],
keywords=[
'cobertura',
'treemap',
'test coverage',
'visualization',
'sphinx',
],
)