11 lines
223 B
Python
11 lines
223 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='etcd3_wrapper',
|
||
|
version='1.0',
|
||
|
description='A wrapper for etcd3',
|
||
|
author='ungleich',
|
||
|
author_email='info@ungleich.ch',
|
||
|
packages=['etcd3_wrapper'] #same as name
|
||
|
)
|