Skip to content

Commit

Permalink
package
Browse files Browse the repository at this point in the history
  • Loading branch information
iboraham committed Jun 5, 2021
1 parent cfe4a4b commit 113d705
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from distutils.core import setup

setup(
name="ab-test",
packages=["ab-test"],
version="0.1",
license="MIT",
description="A/B testing framework for python",
author="Ibrahim Onur Serbetci",
author_email="onurserbetcii@gmail.com",
url="https://github.com/iboraham/ab-test",
download_url="https://github.com/iboraham/ab-test/archive/v_01.tar.gz",
keywords=[
"ab-testing",
"hypothesis-testing",
"z-test",
],
install_requires=[
"statsmodels",
"pandas",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Data Scientist",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)

0 comments on commit 113d705

Please sign in to comment.