metrik/setup.py

23 lines
514 B
Python
Raw Normal View History

2016-08-07 16:25:04 -04:00
from setuptools import setup, find_packages
setup(
name='Metrik',
description='Data aggregation framework for Python',
version='0.1.0',
author='Bradlee Speice',
author_email='bradlee.speice@gmail.com',
packages=find_packages(),
install_requires=[
'pyquery >= 1.2.13',
'luigi >= 2.2.0',
'requests >= 2.9.1',
'six >= 1.10.0'
2016-08-07 16:25:04 -04:00
],
setup_requires=[
2016-08-07 16:49:19 -04:00
'pytest_runner'
2016-08-07 16:25:04 -04:00
],
tests_require=[
2016-08-07 21:55:19 -04:00
'pytest',
'pytest-catchlog'
2016-08-07 16:25:04 -04:00
]
)