~james-page/ubuntu/trusty/python-happybase/0.8

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2013-10-19 22:59:58 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20131019225958-faqk2cdna6ykbgu6
Tags: 0.7-1
* New upstream release (Closes: #730368).
* Drops python-nosexcover as its not being used by the tests.
* Do not build-depends on openstack-pkg-tools anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from os.path import join, dirname
2
2
from setuptools import find_packages, setup
3
3
 
 
4
__version__ = None
4
5
execfile('happybase/_version.py')
5
6
 
6
7
 
19
20
    return install_requires
20
21
 
21
22
 
22
 
setup(name='happybase',
23
 
      version=__version__,
24
 
      description="A developer-friendly Python library to interact "
25
 
                  "with Apache HBase",
26
 
      long_description=get_file_contents('README.rst'),
27
 
      author="Wouter Bolsterlee",
28
 
      author_email="uws@xs4all.nl",
29
 
      url='https://github.com/wbolster/happybase',
30
 
      install_requires=get_install_requires(),
31
 
      packages=find_packages(exclude=['tests']),
32
 
      license="MIT",
33
 
      classifiers=(
34
 
          "Development Status :: 4 - Beta",
35
 
          "Intended Audience :: Developers",
36
 
          "License :: OSI Approved :: MIT License",
37
 
          "Programming Language :: Python :: 2",
38
 
          "Topic :: Database",
39
 
          "Topic :: Software Development :: Libraries :: Python Modules",
40
 
          )
41
 
      )
 
23
setup(
 
24
    name='happybase',
 
25
    version=__version__,
 
26
    description="A developer-friendly Python library to interact with "
 
27
                "Apache HBase",
 
28
    long_description=get_file_contents('README.rst'),
 
29
    author="Wouter Bolsterlee",
 
30
    author_email="uws@xs4all.nl",
 
31
    url='https://github.com/wbolster/happybase',
 
32
    install_requires=get_install_requires(),
 
33
    packages=find_packages(exclude=['tests']),
 
34
    license="MIT",
 
35
    classifiers=(
 
36
        "Development Status :: 4 - Beta",
 
37
        "Intended Audience :: Developers",
 
38
        "License :: OSI Approved :: MIT License",
 
39
        "Programming Language :: Python :: 2",
 
40
        "Topic :: Database",
 
41
        "Topic :: Software Development :: Libraries :: Python Modules",
 
42
    )
 
43
)