-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
73 lines (60 loc) · 1.45 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
# pylint: skip-file
"""
Setup script.
"""
from distutils.core import Command
from setuptools import setup
class Coverage(Command):
"""
Coverage setup.
"""
description = (
'Run test suite against single instance of'
'Python and collect coverage data.'
)
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import coverage
import unittest
cov = coverage.coverage(config_file='.coveragerc')
cov.erase()
cov.start()
test_loader = unittest.TestLoader()
test_suite = test_loader.discover(start_dir='tests')
unittest.TextTestRunner().run(test_suite)
cov.stop()
cov.save()
cov.report()
cov.html_report()
setup(
author='Anurag Agarwal',
author_email='[email protected]',
description='tableau_parser',
download_url='',
cmdclass={
'coverage': Coverage,
},
install_requires=[
'lxml>=3.7.0,<3.8.0'
],
license='MIT License',
name='tableau_parser',
packages=[
'tableau_parser',
],
scripts=[],
test_suite='tests',
tests_require=[
'codecov>=2.0.3,<3.0.0',
'coverage>=4.0.3,<5.0.0',
'Sphinx>=1.4.1,<2.0.0',
'tox>=2.3.1,<3.0.0',
'virtualenv>=15.0.1,<16.0.0'
],
url='https://github.com/practo/tableau-parser.git',
version='1.0.0'
)