Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Added PyPi Documentation
  • Loading branch information
AakashSasikumar committed Sep 13, 2020
1 parent 4086099 commit eb0a847
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
from setuptools import setup

from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='sopy',
version='1.0',
version='1.1',
description='A neat way to write SOPs using python',
url='https://github.com/AakashSasikumar/SOPy',
author='Aakash Sasikumar and Sourav Johar',
Expand All @@ -12,4 +17,7 @@
"jinja2",
"beautifulsoup4"
],
zip_safe=False)
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit eb0a847

Please sign in to comment.