etcd3_wrapper/setup.py

24 lines
596 B
Python
Raw Normal View History

2019-09-11 11:31:02 +00:00
import setuptools
2019-09-11 03:37:10 +00:00
2019-09-11 11:31:02 +00:00
with open('README.md') as fh:
long_description = fh.read()
setuptools.setup(
2019-09-11 03:37:10 +00:00
name='etcd3_wrapper',
2019-09-12 13:51:18 +00:00
version='0.5.2',
2019-09-11 11:31:02 +00:00
description='A wrapper around etcd3 package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://code.ungleich.ch/ungleich-public/etcd3_wrapper',
2019-09-11 03:37:10 +00:00
author='ungleich',
2019-09-11 11:31:02 +00:00
author_email='hacking@ungleich.ch',
packages=setuptools.find_packages(),
install_requires=[
'etcd3',
],
classifiers=[
'Programming Language :: Python :: 3',
],
2019-09-12 08:49:06 +00:00
python_requires='>=3.5',
2019-09-11 03:37:10 +00:00
)