Skip to content

Commit

Permalink
Merge pull request #5 from wo1fsea/develop
Browse files Browse the repository at this point in the history
add: pypi
  • Loading branch information
wo1fsea authored Aug 14, 2019
2 parents 9117118 + b74070c commit 2577450
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# PyEasyRPC
[![PyPI Status](https://badge.fury.io/py/pyeasyrpc.svg)](https://pypi.org/project/pyeasyrpc/)
[![Build Status](https://travis-ci.com/wo1fsea/PyEasyRPC.svg?branch=master)](https://travis-ci.com/wo1fsea/PyEasyRPC)
[![codecov](https://codecov.io/gh/wo1fsea/PyEasyRPC/branch/master/graph/badge.svg)](https://codecov.io/gh/wo1fsea/PyEasyRPC)

Expand Down
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-
"""----------------------------------------------------------------------------
Author:
Huang Quanyong (wo1fSea)
quanyongh@foxmail.com
Date:
2019/8/14
Description:
setup.py
----------------------------------------------------------------------------"""

import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="pyeasyrpc",
version="0.0.1",
license='MIT',
author='Quanyong Huang',
author_email='quanyongh@foxmail.com',
description="a Python RPC framework using redis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wo1fsea/PyEasyRPC",
download_url='https://github.com/wo1fsea/PyEasyRPC/releases/tag/v0.0.1',
keywords=['rpc-framework', 'redis'],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],

install_requires=['msgpack-python', 'shortuuid', 'redis'],
packages=setuptools.find_packages(),
)

0 comments on commit 2577450

Please sign in to comment.