14 lines
299 B
Python
Executable File
14 lines
299 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='jsonrpc',
|
|
version='0.2.0',
|
|
author='RemiZOffAlex',
|
|
author_email='remizoffalex@gmail.com',
|
|
packages=find_packages(exclude=['prototypes', 'tests']),
|
|
keywords=['api', 'json', 'json-rpc', 'rpc']
|
|
)
|