76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
import sys
|
|
import os
|
|
import codecs
|
|
import re
|
|
from setuptools.command.test import test as TestCommand
|
|
from setuptools import setup, find_packages
|
|
from puppetboard.version import __version__
|
|
|
|
|
|
with codecs.open('README.rst', encoding='utf-8') as f:
|
|
README = f.read()
|
|
|
|
with codecs.open('CHANGELOG.rst', encoding='utf-8') as f:
|
|
CHANGELOG = f.read()
|
|
|
|
|
|
requirements = None
|
|
with open('requirements.txt', 'r') as f:
|
|
requirements = [line.rstrip()
|
|
for line in f.readlines() if not line.startswith('-')]
|
|
|
|
requirements_test = None
|
|
with open('requirements-test.txt', 'r') as f:
|
|
requirements_test = [line.rstrip() for line in f.readlines()
|
|
if not line.startswith('-')]
|
|
|
|
|
|
class PyTest(TestCommand):
|
|
|
|
user_options = [('pytest-args=', 'a', "Arguments to pass to pytest")]
|
|
|
|
def initialize_options(self):
|
|
TestCommand.initialize_options(self)
|
|
self.pytest_args = '--cov=puppetboard --cov-report=term-missing'
|
|
|
|
def run_tests(self):
|
|
import shlex
|
|
import pytest
|
|
errno = pytest.main(shlex.split(self.pytest_args))
|
|
sys.exit(errno)
|
|
|
|
|
|
setup(
|
|
name='puppetboard',
|
|
version=__version__,
|
|
author='Corey Hammerton',
|
|
author_email='corey.hammerton@gmail.com',
|
|
packages=find_packages(),
|
|
url='https://github.com/voxpupuli/puppetboard',
|
|
license='Apache License 2.0',
|
|
description='Web frontend for PuppetDB',
|
|
include_package_data=True,
|
|
long_description='\n'.join((README, CHANGELOG)),
|
|
zip_safe=False,
|
|
install_requires=requirements,
|
|
tests_require=requirements_test,
|
|
extras_require={'test': requirements_test},
|
|
keywords="puppet puppetdb puppetboard",
|
|
cmdclass={'test': PyTest},
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Flask',
|
|
'Intended Audience :: System Administrators',
|
|
'Natural Language :: English',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Operating System :: POSIX',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
],
|
|
)
|