Newer
Older
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
with open('pyotrs/version.py') as f:
exec(f.read())
setup(
name='PyOTRS',
version=__version__,
author='Robert Habermann',
author_email='robert.habermann@dlh.de',
maintainer='Robert Habermann',
url='https://gitlab.com/frennkie/PyOTRS',
description='Python wrapper for OTRS (using REST API)',
long_description=README,
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
license=LICENSE,
install_requires=[
"requests",
"responses",
],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha', # TODO: get to beta at least
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Pytest',
'Framework :: Sphinx',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License', # TODO: clarify license
'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.6',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3', # TODO add support for 3 / 3.4+
# 'Programming Language :: Python :: 3.4',
'Topic :: Documentation :: Sphinx',
],
)