blob: db98f7d4065b6143506a206e68e9d11be3e5cc81 [file] [log] [blame]
from __future__ import print_function
from os.path import dirname, join
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
def _get_version():
"""Return the project version from VERSION file."""
with open(join(dirname(__file__), '{{project.package}}/VERSION'), 'rb') as f:
version = f.read().decode('ascii').strip()
return version
class Tox(TestCommand):
"""Run the test cases using TOX command."""
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# Import here, cause outside the eggs aren't loaded
import tox
import shlex
import sys
args = self.tox_args
if args:
args = shlex.split(self.tox_args)
else:
# Run all tests by default
args = ['-c', join(dirname(__file__), 'tox.ini'), 'tests']
errno = tox.cmdline(args=args)
sys.exit(errno)
setup(
name='{{project.package}}',
version=_get_version(),
url='{{project.url}}',
description='{{project.description}}',
long_description=open(join(dirname(__file__), 'README.md')).read(),
author='{{mantainer.name}}',
maintainer='{{mantainer.name}}',
maintainer_email='{{mantainer.email}}',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'scikit-learn==0.18.2',
'scipy==0.19.1',
'numpy==1.13.1',
'pandas==0.20.3',
'matplotlib==2.0.2',
'marvin-python-toolbox==0.0.3',
'Fabric==1.14.0',
],
tests_require=[
'pytest>=2.6.4',
'pytest-cov>=1.8.1',
'mock>=2.0.0',
'virtualenv>=15.0.1',
'tox>=2.2.0',
],
cmdclass={
'test': Tox,
},
)