forked from sphinx-contrib/youtube
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 803 Bytes
/
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
#-*- coding:utf-8 -*-
import setuptools
setuptools.setup(
name='sphinxcontrib.youtube',
version='100.2.1',
packages=setuptools.find_packages(),
install_requires=[
'sphinx',
'requests',
],
url='https://github.com/ArduPilot/sphinxcontrib-youtube',
description='''embedding youtube videos into sphinx''',
namespace_packages=['sphinxcontrib'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Utilities",
]
)