-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 829 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
31
32
33
# -*- coding: utf-8 -*-
import re
from setuptools import setup
requires = [
'PyYAML==3.11',
'docopt==0.6.1',
'pykwalify==14.08',
'python-etcd==0.3.2'
]
setup(
name = "pyregistrator",
long_description=(
'%s\n\n%s' % (
open('README.md').read(),
open('CHANGELOG.md').read()
)
),
package_dir={'pyregistrator': 'src'},
packages=["pyregistrator",
"pyregistrator.backends",
"pyregistrator.config",
"pyregistrator.lib"],
scripts=["src/bin/pyregistrator"],
version=open('VERSION').read().strip(),
description = "Python docker registration service for etcd.",
author = "Gregory Durham",
author_email = "[email protected]",
include_package_data=True,
install_requires=requires
)