-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
39 lines (34 loc) · 1.19 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
37
38
39
import os
from setuptools import setup, find_packages
DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(DIR, "README.md")) as f:
long_desc = f.read()
desc = '''A standalone nameko rpc proxy for asyncio and a wrapper for using nameko rpc proxy with Sanic. '''
setup(
name="aio-nameko-proxy",
version="1.3.2a0",
author="laiyongtao",
author_email="laiyongtao6908@163.com",
url="https://github.com/laiyongtao/aio_nameko_proxy" ,
license="Apache License, Version 2.0",
description=desc,
long_description=long_desc,
long_description_content_type="text/markdown",
platforms="all",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords = ["nameko", "sanic", "asyncio", "rpc", "fastapi"],
packages=find_packages(exclude=["demos"]),
install_requires=[
"aio-pika>=6.6.0",
"aiotask-context>=0.6.1",
"nameko>=2.12.0"
],
python_requires=">3.5.*, <4",
)