forked from python-consul/python-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (44 loc) · 1.48 KB
/
setup.py
File metadata and controls
56 lines (44 loc) · 1.48 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import sys
import re
from setuptools.command.test import test as TestCommand
from setuptools import setup
from setuptools import find_packages
metadata = dict(
re.findall("__([a-z]+)__ = '([^']+)'", open('consul/__init__.py').read()))
requirements = [
x.strip() for x
in open('requirements.txt').readlines() if not x.startswith('#')]
description = "Python client for Consul (http://www.consul.io/)"
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name='python-consul',
version=metadata['version'],
author='Andy Gayton',
author_email='andy@thecablelounge.com',
install_requires=requirements,
packages=find_packages(),
url='https://github.com/cablehead/python-consul',
license='MIT',
description=description,
long_description=open('README.rst').read() + '\n\n' +
open('CHANGELOG.rst').read(),
tests_require=['pytest'],
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)