Skip to content

Commit

Permalink
Updated setup.py for 2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Feb 3, 2015
1 parent c1216c7 commit cbf1d79
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions setup.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
#!/usr/bin/env python
import os
from setuptools import setup

README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
README = open(os.path.join(os.path.dirname(__file__), 'README')).read()

# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='python-zimbra',
version='1.0-git',
version='2.0rc1',
packages=['pythonzimbra'],
include_package_data=True,
license='specific',
license='BSD 2-clause License', # example license
description='Python classes to access Zimbra SOAP backend with a few utilities.',
long_description=README,
url='https://github.com/Zimbra-Community/python-zimbra',
author='Dennis Ploeger',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries'
],
Expand Down

0 comments on commit cbf1d79

Please sign in to comment.