Skip to content

Commit cbf1d79

Browse files
committed
Updated setup.py for 2.0rc1
1 parent c1216c7 commit cbf1d79

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

setup.py

100755100644
+13-5
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,39 @@
1-
#!/usr/bin/env python
21
import os
32
from setuptools import setup
43

5-
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
4+
README = open(os.path.join(os.path.dirname(__file__), 'README')).read()
65

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

109
setup(
1110
name='python-zimbra',
12-
version='1.0-git',
11+
version='2.0rc1',
1312
packages=['pythonzimbra'],
1413
include_package_data=True,
15-
license='specific',
14+
license='BSD 2-clause License', # example license
1615
description='Python classes to access Zimbra SOAP backend with a few utilities.',
1716
long_description=README,
1817
url='https://github.com/Zimbra-Community/python-zimbra',
1918
author='Dennis Ploeger',
2019
author_email='[email protected]',
2120
classifiers=[
22-
'Development Status :: 3 - Alpha',
21+
'Development Status :: 5 - Production/Stable',
2322
'Intended Audience :: Developers',
23+
'License :: OSI Approved :: BSD License', # example license
2424
'Operating System :: POSIX',
2525
'Operating System :: MacOS :: MacOS X',
2626
'Programming Language :: Python',
2727
'Programming Language :: Python :: 2.6',
2828
'Programming Language :: Python :: 2.7',
29+
'Programming Language :: Python :: 3',
30+
'Programming Language :: Python :: 3.0',
31+
'Programming Language :: Python :: 3.1',
32+
'Programming Language :: Python :: 3.2',
33+
'Programming Language :: Python :: 3.3',
34+
'Programming Language :: Python :: 3.4',
35+
'Programming Language :: Python :: Implementation :: CPython',
36+
'Programming Language :: Python :: Implementation :: PyPy',
2937
'Topic :: Software Development :: Libraries :: Application Frameworks',
3038
'Topic :: Software Development :: Libraries'
3139
],

0 commit comments

Comments
 (0)