-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
30 lines (28 loc) · 1.02 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
import os
from setuptools import setup
long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read()
setup(
name='sphinx-confluence',
description='Atlassian Confluence extension for sphinx',
long_description_content_type='text/markdown',
long_description=long_description,
version='0.0.4',
author='Arello Mobile',
url='https://github.com/Arello-Mobile/sphinx-confluence',
packages=['sphinx_confluence'],
include_package_data=True,
license='MIT',
install_requires=open('requirements.txt').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)