-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (29 loc) · 970 Bytes
/
setup.py
File metadata and controls
36 lines (29 loc) · 970 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
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
import sys
from siderpy import __version__
if sys.version_info < (3, 7):
sys.exit("Sorry, Python < 3.7 is not supported")
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="siderpy",
version=__version__,
author="Roma Koshel",
author_email="roma.koshel@gmail.com",
description="Asyncio Redis client",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
py_modules=["siderpy"],
extras_require={"hiredis": ["hiredis"]},
packages=find_packages(exclude=("tests",)),
include_package_data=True,
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
],
)