-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (29 loc) · 932 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
setup(
name='etcd3autodiscover',
description='Wrapper around python-etcd3 to support DNS SRV discovery of endpoints',
url='git@github.com:answear/python-etcd3autodiscover.git',
author='Piotr Mazurkiewicz',
author_email='piotr.mazurkiewicz@wearco.pl',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
keywords='',
package_dir={'': 'src'},
packages=['etcd3autodiscover'],
install_requires=[
'dnspython',
'tornado>=4.5.0',
'etcd3',
],
setup_requires=['setuptools_scm'],
use_scm_version=True,
)