-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
33 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
project_url = 'https://github.com/bavovanachte/sphinx-wavedrom'
requires = ['Sphinx>=1.8',
'wavedrom>=1.9.0rc1',
'cairosvg>=2;python_version>="3.3"',
'xcffib;python_version>="3.3"']
setup(
name='sphinxcontrib-wavedrom',
use_scm_version={
"relative_to": __file__,
"write_to": "sphinxcontrib/version.py",
},
url='https://github.com/bavovanachte/sphinx-wavedrom',
license='MIT license',
author='Bavo Van Achte, Stefan Wallentowitz',
author_email='[email protected], [email protected]',
description='A sphinx extension that allows generating wavedrom diagrams based on their textual representation',
long_description=open("README.rst").read(),
zip_safe=False,
classifiers=['Framework :: Sphinx :: Extension'],
platforms='any',
packages=find_packages(exclude=['example']),
include_package_data=True,
install_requires=requires,
setup_requires=[
'setuptools_scm',
],
namespace_packages=['sphinxcontrib'],
keywords = ['sphinx', 'wavedrom', 'documentation'],
)