forked from maxtepkeev/python-redmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (54 loc) · 2.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
import sys
from setuptools import setup
from pkg_resources import get_distribution, DistributionNotFound
try:
get_distribution('pyredmine')
sys.stdout.write('''
{delimiter}
INSTALLATION ABORTED
PyRedmineWS library was found on this system. Unfortunately
Python Redmine and PyRedmineWS can't work together because
they both use the same package name, i.e. redmine. There is
no need to use PyRedmineWS because it's development seems
to be discontinued and Python Redmine provides a lot more
features than PyRedmineWS. In order to complete the install
process, please uninstall PyRedmineWS first and rerun the
installation procedure for Python Redmine afterwards
{delimiter}
'''.format(delimiter='=' * 60))
sys.exit(0)
except DistributionNotFound:
pass
exec(open('redmine/version.py').read())
setup(
name='python-redmine',
version=__version__,
packages=['redmine'],
url='https://github.com/maxtepkeev/python-redmine',
license=open('LICENSE').read(),
author='Max Tepkeev',
author_email='[email protected]',
description='Library for communicating with a Redmine project management application',
long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read(),
keywords='redmine',
install_requires=['requests >= 0.12.1'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Internet :: WWW/HTTP',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'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'
],
)