Add setup files for pip and update .gitignore.
This commit is contained in:
Родитель
25d8feee43
Коммит
d7a55a736d
|
@ -1,3 +1,5 @@
|
|||
.coverage
|
||||
dist/*
|
||||
.DS_Store
|
||||
*.pyc
|
||||
*.pyc
|
||||
stmoab.egg-info/*
|
|
@ -0,0 +1,2 @@
|
|||
[metadata]
|
||||
description-file = README.rst
|
|
@ -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"
|
||||
]
|
||||
)
|
Загрузка…
Ссылка в новой задаче