forked from DaveTCode/confluence-python-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.2 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
from codecs import open
from os import path
from setuptools import setup, find_packages
readme = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
with open(readme, encoding='utf-8') as f:
long_description = f.read()
setup(
name='confluence-rest-library',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
version='0.13.2',
description='A simple wrapper around the Confluence REST API.',
long_description=long_description,
author='David Tyler',
author_email='[email protected]',
url='https://github.com/DaveTCode/confluence-python-lib',
keywords=['confluence'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
python_requires='>=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4',
setup_requires=['pytest-runner', 'pypandoc', 'typing', 'pycodestyle', 'bandit', 'mypy'],
install_requires=['requests >= 2.18.4, < 3.0.0a0'],
tests_require=['pytest >= 3.0.7, < 4.0.0a0', 'pytest-cov >= 2.5.0, < 3.0.0a0']
)