Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Long description (#28)
Browse files Browse the repository at this point in the history
* add long_description

* Update setup.py
  • Loading branch information
gkorland authored Dec 19, 2019
1 parent 25c5cc6 commit b2e46d9
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
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 = map(str.strip, open("requirements.txt").readlines())

setup(
name='redistimeseries',
version='0.5',

description='RedisTimeSeries Python Client',
long_description=read_all("README.md"),
long_description_content_type='text/markdown',
url='https://github.com/RedisTimeSeries/redistimeseries-py',
packages=find_packages(),
install_requires=['redis'],

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 TimeSeries Extension',
author='RedisLabs',
author_email='oss@redislabs.com'
)

0 comments on commit b2e46d9

Please sign in to comment.