Newer
Older
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
with open('pyotrs/version.py') as f:
__version__ = ''
exec(f.read()) # set __version__
setup(
name='PyOTRS',
version=__version__,
author='Robert Habermann',
description='Python wrapper for OTRS (using REST API)',
long_description=README,
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
tests_require=['tox', 'coverage', 'unittest2', 'mock', 'responses'],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Pytest',
'Framework :: Sphinx',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: Linux',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',