2017-03-15 22:14:05 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2017-06-29 02:41:10 +03:00
|
|
|
test_deps = [
|
2018-11-28 19:06:16 +03:00
|
|
|
'coverage==4.5.2',
|
|
|
|
'pytest-cov==2.6.0',
|
|
|
|
'pytest-timeout==1.3.3',
|
|
|
|
'moto==1.3.6',
|
|
|
|
'mock==2.0.0',
|
|
|
|
'pytest==3.10.1',
|
|
|
|
'flake8==3.6.0'
|
2017-06-29 02:41:10 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
extras = {
|
|
|
|
'testing': test_deps,
|
|
|
|
}
|
2017-04-12 21:16:10 +03:00
|
|
|
|
2017-04-25 17:27:38 +03:00
|
|
|
setup(
|
|
|
|
name='mozetl',
|
|
|
|
version='0.1',
|
|
|
|
description='Python ETL jobs for Firefox Telemetry to be scheduled on Airflow.',
|
|
|
|
author='Ryan Harter',
|
|
|
|
author_email='harterrt@mozilla.com',
|
|
|
|
url='https://github.com/mozilla/python_mozetl.git',
|
|
|
|
packages=find_packages(exclude=['tests']),
|
2017-05-03 21:36:07 +03:00
|
|
|
include_package_data=True,
|
2017-04-25 17:27:38 +03:00
|
|
|
install_requires=[
|
2017-10-10 17:37:05 +03:00
|
|
|
'arrow==0.10.0',
|
|
|
|
'click==6.7',
|
|
|
|
'click_datetime==0.2',
|
|
|
|
'numpy==1.13.3',
|
2019-01-11 04:54:53 +03:00
|
|
|
'pandas>=0.23.0',
|
2018-08-21 22:11:29 +03:00
|
|
|
'pyspark==2.3.1',
|
2018-08-15 19:51:14 +03:00
|
|
|
'pyspark_hyperloglog==2.1.1',
|
2018-06-08 01:22:34 +03:00
|
|
|
'python_moztelemetry==0.10.2',
|
2018-03-26 18:42:07 +03:00
|
|
|
'requests-toolbelt==0.8.0',
|
2018-11-28 20:38:58 +03:00
|
|
|
'requests==2.20.1',
|
2017-10-10 17:37:05 +03:00
|
|
|
'scipy==1.0.0rc1',
|
2018-12-19 01:14:56 +03:00
|
|
|
'typing==3.6.4',
|
2018-12-22 02:11:03 +03:00
|
|
|
'six==1.11.0',
|
2017-04-25 17:27:38 +03:00
|
|
|
],
|
2017-06-29 02:41:10 +03:00
|
|
|
tests_require=test_deps,
|
|
|
|
extras_require=extras,
|
2017-04-25 17:27:38 +03:00
|
|
|
)
|