Add setup files for pip and update .gitignore.

This commit is contained in:
Marina Samuel 2018-02-05 15:23:08 -05:00
Родитель 25d8feee43
Коммит d7a55a736d
3 изменённых файлов: 25 добавлений и 1 удалений

4
.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,5 @@
.coverage
dist/*
.DS_Store
*.pyc
*.pyc
stmoab.egg-info/*

2
setup.cfg Normal file
Просмотреть файл

@ -0,0 +1,2 @@
[metadata]
description-file = README.rst

20
setup.py Normal file
Просмотреть файл

@ -0,0 +1,20 @@
from setuptools import setup
setup(
name = 'stmoab',
packages = ['stmoab'],
version = '0.0.1',
description = 'A tool for automating a/b testing analysis using stmo dashboards (https://sql.telemetry.mozilla.org)',
author = 'Marina Samuel',
author_email = 'msamuel@mozilla.com',
url = 'https://github.com/mozilla/stmoab',
keywords = ['stmo', 'redash', 'experiments', 'a/b tests'],
classifiers = [],
install_requires=[
"boto3 == 1.4.4",
"scipy == 1.0.0",
"statistics == 1.0.3.5",
"statsmodels == 0.6.1",
"urllib3 == 1.21.1",
"redash_client == 0.2.1"
]
)