13 lines
251 B
Python
13 lines
251 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
from setuptools import setup, find_packages
|
||
|
|
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name='jsonrpc',
|
||
|
|
version='0.1.0',
|
||
|
|
author='RemiZOffAlex',
|
||
|
|
author_email='remizoffalex@gmail.com',
|
||
|
|
packages=find_packages(exclude=['prototypes', 'tests']),
|
||
|
|
)
|