-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (26 loc) · 943 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
24
25
26
27
28
from setuptools import setup, find_packages
VERSION = "1.0.0"
DESCRIPTION = "Python Module for generating the result of probability based toys."
LONG_DESC = open("README.rst").read()
setup(
name="pyrandtoys",
version=VERSION,
author="thenithinbalaji",
author_email="[email protected]",
url="https://github.com/thenithinbalaji/pyrandtoys",
description=DESCRIPTION,
long_description=LONG_DESC,
packages=find_packages(),
install_requires=[],
keywords=["python", "random", "probability", "experiment"],
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
],
)