From 113d705272910e58b070a3ccc41d1243ebe1cf2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20=C5=9Eerbet=C3=A7i?= Date: Sat, 5 Jun 2021 19:15:27 +0100 Subject: [PATCH] package --- LICENSE => LICENSE.txt | 0 setup.cfg | 2 ++ setup.py | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) rename LICENSE => LICENSE.txt (100%) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..83e1789 --- /dev/null +++ b/setup.py @@ -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", + ], +)