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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#!/usr/bin/env python
# Copyright 2008-2009 Canonical Ltd.
#
# This file is part of launchpadlib.
#
# launchpadlib is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, version 3 of the License.
#
# launchpadlib is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with launchpadlib. If not, see <http://www.gnu.org/licenses/>.
"""Setup for the launchpadlib library."""
import sys
from setuptools import setup, find_packages
# generic helpers primarily for the long_description
def generate(*docname_or_string):
res = []
for value in docname_or_string:
if value.endswith('.txt'):
f = open(value)
value = f.read()
f.close()
res.append(value)
if not value.endswith('\n'):
res.append('')
return '\n'.join(res)
# end generic helpers
sys.path.insert(0, 'src')
from launchpadlib import __version__
install_requires = [
'httplib2',
'keyring',
'lazr.restfulclient>=0.9.19',
'lazr.uri',
'oauth',
'setuptools',
'testresources',
'wadllib',
]
if sys.version < "2.6":
install_requires.append('simplejson')
setup(
name='launchpadlib',
version=__version__,
packages=find_packages('src'),
package_dir={'':'src'},
include_package_data=True,
zip_safe=False,
author='The Launchpad developers',
author_email='launchpadlib@lists.launchpad.net',
maintainer='LAZR Developers',
maintainer_email='lazr-developers@lists.launchpad.net',
download_url= 'https://launchpad.net/launchpadlib/+download',
description=open('README.txt').readline().strip(),
long_description=generate(
'src/launchpadlib/README.txt',
'src/launchpadlib/NEWS.txt'),
license='LGPL v3',
install_requires=install_requires,
url='https://help.launchpad.net/API/launchpadlib',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python"],
test_suite='launchpadlib.tests',
)
|