summaryrefslogtreecommitdiff
path: root/setup.py
blob: ff7f9fbafcb4655cc5caa9b515df0cf2762cf8e3 (plain)
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai

import os
from setuptools import setup, find_packages

README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()

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

setup (
    name = "gerritrest",
    version = "0.1.2",
    packages = ['gerritrest'],
    # include_package_data=True,
    license = "GPLv2",
    description = "Access to Gerrit 2.6+ REST APIs",
    long_description = README,
    # url = "http://",
    author = "Alexander Kanevskiy",
    author_email = "alexander.kanevskiy@intel.com",
    keywords = "python gerrit REST api",
    platforms="Python 2.6 and later.",
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Environment :: Web Environment",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        'Topic :: Internet :: WWW/HTTP',
        "Topic :: Software Development :: Libraries :: Python Modules"
        ]
    )