We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d43ca8 commit 3a8e234Copy full SHA for 3a8e234
setup.py
@@ -0,0 +1,18 @@
1
+import setuptools
2
+with open("README.md", "r") as fh:
3
+ long_description = fh.read()
4
+setuptools.setup(
5
+ name='alphab',
6
+ version='0.1',
7
+ author="Julia Jakubczak",
8
+ author_email="[email protected]",
9
+ description="Python library for rendering charts and computing statistics for A/B testing",
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/Wikia/AlphaB",
12
+ packages=setuptools.find_packages(),
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ )
0 commit comments