metrik/setup.py

25 lines
569 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.11.0',
2016-08-12 23:58:34 -04:00
'six >= 1.10.0',
2016-08-13 00:09:57 -04:00
'pymongo >= 3.2',
'pytz >= 2016.6.1'
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
]
)