File: setup.py

package info (click to toggle)
python-redisearch-py 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,356 kB
  • sloc: python: 1,689; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 943 bytes parent folder | download | duplicates (2)
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

#!/usr/bin/env python
from setuptools import setup, find_packages
import io

def read_all(f):
    with io.open(f, encoding="utf-8") as I:
        return I.read()

requirements = list(map(str.strip, open("requirements.txt").readlines()))

setup(
    name='redisearch',
    version='1.0.0',
    description='RedisSearch Python Client',
    long_description=read_all("README.md"),
    long_description_content_type='text/markdown',
    url='http://github.com/RedisLabs/redisearch-py',
    packages=find_packages(),
    install_requires=requirements,
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python :: 2.7',
        'Topic :: Database',
        'Topic :: Software Development :: Testing'
    ],
    keywords='Redis Search Extension',
    author='RedisLabs',
    author_email='oss@redislabs.com'    
)