-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (27 loc) · 902 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
from setuptools import setup, find_packages
setup(
name='sphinxcontrib-robotdoc',
version='0.11.1.dev0',
description=('Sphinx extension to embed Robot Framework test cases '
'and user keywords into Sphinx documents'),
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.rst').read()),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='',
author='Asko Soukka',
author_email='[email protected]',
url='https://github.com/datakurre/sphinxcontrib-robotdoc/',
license='GPL',
py_modules=['sphinxcontrib_robotdoc'],
install_requires=[
'setuptools',
'sphinx',
'pygments>=1.6rc1',
'robotframework>=2.7.1'
]
)