-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (64 loc) · 2.18 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import os
import re
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
def read_requirements(filename):
"""Open a requirements file and return list of its lines."""
contents = read_file(filename).strip('\n')
return contents.split('\n') if contents else []
def read_file(filename):
"""Open and a file, read it and return its contents."""
path = os.path.join(os.path.dirname(__file__), filename)
with open(path) as f:
return f.read()
def get_metadata(init_file):
"""Read metadata from a given file and return a dictionary of them"""
return dict(re.findall("__([a-z]+)__ = '([^']+)'", init_file))
class PyTest(TestCommand):
"""Command to run unit tests after in-place build."""
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = [
'-sv',
'--pep8',
'--flakes',
'--cov', 'kore',
'--cov-report', 'term-missing',
]
self.test_suite = True
def run_tests(self):
# Importing here, `cause outside the eggs aren't loaded.
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
init_path = os.path.join('kore', '__init__.py')
init_py = read_file(init_path)
metadata = get_metadata(init_py)
entry_points = """\
[kore.configs]
dict = kore.configs.dict:DictConfig
env = kore.configs.env:EnvConfig
"""
setup(
name='kore',
version=metadata['version'],
author=metadata['author'],
author_email=metadata['email'],
url=metadata['url'],
packages=find_packages(include=('kore*',)),
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
],
install_requires=read_requirements('requirements.txt'),
tests_require=read_requirements('requirements_dev.txt'),
entry_points=entry_points,
cmdclass={'test': PyTest},
zip_safe=False,
)