|
1 |
| -#!/usr/bin/env python |
2 | 1 | import os
|
3 | 2 | from setuptools import setup
|
4 | 3 |
|
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() |
6 | 5 |
|
7 | 6 | # allow setup.py to be run from any path
|
8 | 7 | os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
9 | 8 |
|
10 | 9 | setup(
|
11 | 10 | name='python-zimbra',
|
12 |
| - version='1.0-git', |
| 11 | + version='2.0rc1', |
13 | 12 | packages=['pythonzimbra'],
|
14 | 13 | include_package_data=True,
|
15 |
| - license='specific', |
| 14 | + license='BSD 2-clause License', # example license |
16 | 15 | description='Python classes to access Zimbra SOAP backend with a few utilities.',
|
17 | 16 | long_description=README,
|
18 | 17 | url='https://github.com/Zimbra-Community/python-zimbra',
|
19 | 18 | author='Dennis Ploeger',
|
20 | 19 |
|
21 | 20 | classifiers=[
|
22 |
| - 'Development Status :: 3 - Alpha', |
| 21 | + 'Development Status :: 5 - Production/Stable', |
23 | 22 | 'Intended Audience :: Developers',
|
| 23 | + 'License :: OSI Approved :: BSD License', # example license |
24 | 24 | 'Operating System :: POSIX',
|
25 | 25 | 'Operating System :: MacOS :: MacOS X',
|
26 | 26 | 'Programming Language :: Python',
|
27 | 27 | 'Programming Language :: Python :: 2.6',
|
28 | 28 | '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', |
29 | 37 | 'Topic :: Software Development :: Libraries :: Application Frameworks',
|
30 | 38 | 'Topic :: Software Development :: Libraries'
|
31 | 39 | ],
|
|
0 commit comments