~zyga/+junk/lava-data-store

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Zygmunt Krynicki
  • Date: 2011-09-08 23:07:46 UTC
  • Revision ID: zygmunt.krynicki@linaro.org-20110908230746-dv333slv85losxdy
Initial commit on standalone lava-data-store

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (C) 2010 Linaro Limited
 
4
#
 
5
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
 
6
#
 
7
# This file is part of LAVA Server.
 
8
#
 
9
# LAVA Server is free software: you can redistribute it and/or modify
 
10
# it under the terms of the GNU Lesser General Public License version 3
 
11
# as published by the Free Software Foundation
 
12
#
 
13
# LAVA Server is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Lesser General Public License
 
19
# along with LAVA Server.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
 
21
from setuptools import setup, find_packages
 
22
 
 
23
 
 
24
setup(
 
25
    name='lava-data-store',
 
26
    version=":versiontools:lava_data_store:",
 
27
    author="Zygmunt Krynicki",
 
28
    author_email="zygmunt.krynicki@linaro.org",
 
29
    packages=find_packages(),
 
30
    entry_points="""
 
31
    [lava_server.extensions]
 
32
    data-store=lava_data_store.extension:DataStoreExtension
 
33
    """,
 
34
    license="AGPL",
 
35
    description="LAVA Data Store",
 
36
    url='https://launchpad.net/lava-data-store',
 
37
    classifiers=[
 
38
        "Development Status :: 3 - Alpha",
 
39
        "Intended Audience :: Developers",
 
40
        "License :: OSI Approved :: GNU Affero General Public License v3",
 
41
        "Operating System :: OS Independent",
 
42
        "Programming Language :: Python :: 2.6",
 
43
        "Topic :: Software Development :: Testing",
 
44
    ],
 
45
    install_requires=[
 
46
        'south >= 0.7.3',
 
47
        'lava-server >= 0.4',
 
48
        'versiontools >= 1.4',
 
49
    ],
 
50
    setup_requires=[
 
51
        'versiontools >= 1.4',
 
52
    ],
 
53
    zip_safe=False,
 
54
    include_package_data=True)