-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (36 loc) · 1.01 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
"""
Setup module.
"""
from setuptools import setup
from sphinxcadquery import __version__
setup(
name='sphinxcadquery',
version=__version__,
description=
'An extension to visualize CadQuery 3D parts in your Sphinx documentation',
long_description="""TODO""",
url='https://github.com/Peque/sphinxcadquery',
author='Miguel Sánchez de León Peque',
author_email='peque@neosit.es',
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Documentation',
'Topic :: Software Development',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Framework :: Sphinx :: Extension',
],
packages=['sphinxcadquery'],
package_data={
'sphinxcadquery': [
'sphinxcadquerystatic/*',
],
},
install_requires=[
'sphinx',
],
)