-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
30 lines (28 loc) · 837 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
29
30
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md','rst')
except:
description=''
setup(
name = "PythonPi",
version = '1.0.2',
author = 'Pradipta Bora',
author_email = 'pradd@outlook.com',
description = "Get the Value of Pi upto as many decimal places as needed",
license = "MIT",
keywords = "pi maths",
url = "https://github.com/geekpradd/PythonPi",
py_modules = ['PythonPi'],
entry_points = {
'console_scripts': ['pythonpi = PythonPi:shell']
},
long_description=description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
)