forked from geops/redis-websocket-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.17 KB
/
setup.py
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
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md")) as f:
README = f.read()
setup(
name="redis-websocket-api",
version="0.4.3",
description="Redis-over-WebSocket API on top of websockets and aioredis",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/geops/redis-websocket-api",
author="Milan Oberkirch | geOps",
author_email="milan.oberkirch@geops.de",
license="MIT",
keywords="tralis websocket websockets aioredis redis",
packages=["redis_websocket_api"],
install_requires=["aioredis", "websockets", "hiredis"],
extras_require={"testing": ["pytest"], "geo": ["pyproj<2"]},
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering :: GIS",
],
)