-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (54 loc) · 1.7 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
__date__= 'Nov 20, 2015 '
__author__= 'samuel'
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
VERSION = '0.1'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['jinja2',
'pytest-capturelog',
'pytest-cov',
'pytest',
]
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
#self.test_args = ["-s", "-m", "voice"]
self.test_args = []
self.test_suite = True
def run(self):
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(name='scarab_util',
version=VERSION,
description='CLI tool for scarab web framework',
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='samuelololol',
author_email='[email protected]',
url='',
keywords='web scarab pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
test_suite='scarab_util',
tests_require=[],
cmdclass = {'test': PyTest},
entry_points= """\
[console_scripts]
scarab = scarab_util:main
""",
)