-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 687 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 687 Bytes
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
import sys
from setuptools import setup
if sys.version < '3.4':
raise RuntimeError('python 3.4 required')
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except Exception:
long_description = ''
setup(
name='asonic',
author='Moshe Zada',
version='2.0.0',
packages=['asonic'],
keywords=['asonic', 'sonic', 'search', 'asyncio', 'async', 'text'],
url='https://github.com/moshe/asonic',
license='MPL-2.0',
long_description=long_description,
description='Async python client for Sonic database',
install_requires=[],
extras_require={
'tests': ['pytest', 'pytest-asyncio', 'flake8'],
},
)