-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 877 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="SherlockDistribution",
version="1.0",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=["docutils>=0.3"],
# metadata to display on PyPI
author="Swapnil Jha",
author_email="[email protected]",
description="Gaussian and Binomial distributions",
long_description="This is a simple package to be able to initialize and use Gaussian and Binomial Distributions. \
This package also defines magic methods to enable the user to add two or more distributions. \
\
Working on addition of binomial distributions with unequal probabilities.",
project_urls={
"Author LinkedIn": "https://www.linkedin.com/in/swapniljha001",
},
zip_safe=False)