-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (26 loc) · 912 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = open('requirements.txt').read().split('\n')
readme_content = open('README.md').read()
setup(
name='py-json-rpc',
version='0.0.6',
description='Decorator based toolkit to use JSONRPC easy like Flask. Asyncio supported.',
long_description=readme_content,
author='OGURA_Daiki',
author_email='',
license='MIT',
keywords=['json rpc', 'asyncio'],
url='https://github.com/hachibeeDI/py-json-rpc',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only'
],
)