Skip to content

Commit 3a8e234

Browse files
committed
Add setup.py file
1 parent 7d43ca8 commit 3a8e234

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)