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',
|
2016-08-07 16:45:49 -04:00
|
|
|
'luigi >= 2.2.0',
|
2016-08-08 23:31:49 -04:00
|
|
|
'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',
|
2016-08-13 00:54:36 -04:00
|
|
|
'pytz >= 2016.6.1',
|
2016-08-16 16:12:32 -04:00
|
|
|
'python-dateutil >= 2.4.2',
|
2016-08-22 21:34:54 -04:00
|
|
|
'pandas >= 0.17.1',
|
|
|
|
'argparse >= 1.1.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-22 21:34:54 -04:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'metrik = metrik.batch:handle_commandline'
|
|
|
|
]
|
|
|
|
}
|
2016-08-07 16:25:04 -04:00
|
|
|
)
|