-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 864 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from quintet.helpers.setuphelpers import PyTest
class QuintetPyTest(PyTest):
"""
Project specific test options for quintet
"""
def add_project_specific_options(self):
self.package_name = 'quintet'
setup(name='Quintet',
version='0.1',
description='Quintet Framework',
author='Moses E. Miles III',
author_email='[email protected]',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
license = 'MIT',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
],
install_requires=['docker-py'],
tests_require=['pytest',
'pytest-flakes',
'pytest-cov'],
test_suite = "quintet.tests",
cmdclass = {'test':QuintetPyTest},
)