-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (60 loc) · 1.39 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
"""
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='Mohamad Mohebifar',
author_email='mmohebifar@mun.ca',
description='lj-parspace',
download_url='',
cmdclass={
'coverage': Coverage,
},
install_requires=[
'openbabel>=2.4.1',
'numpy'
],
license='Apache License (2.0)',
name='lj-parspace',
packages=[
'lj_parspace',
],
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='',
version='1.0.0'
)