mirror of
https://github.com/bspeice/metrik
synced 2024-11-04 22:48:11 -05:00
25 lines
569 B
Python
25 lines
569 B
Python
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',
|
|
'six >= 1.10.0',
|
|
'pymongo >= 3.2',
|
|
'pytz >= 2016.6.1'
|
|
],
|
|
setup_requires=[
|
|
'pytest_runner'
|
|
],
|
|
tests_require=[
|
|
'pytest',
|
|
'pytest-catchlog'
|
|
]
|
|
) |