2017-03-15 22:14:05 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
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']),
|
|
|
|
install_requires=[
|
|
|
|
'python_moztelemetry', # TODO: pin version
|
2017-04-12 21:16:10 +03:00
|
|
|
'click',
|
|
|
|
'requests'
|
2017-04-25 17:27:38 +03:00
|
|
|
],
|
|
|
|
)
|