Skip to content

Commit

Permalink
changed setup for readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vallettea committed Jun 19, 2019
1 parent 1b2861f commit 18f4a6d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
"""Setup script."""

from setuptools import setup, find_packages
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()


if __name__ == '__main__':
setup(
name="koala2",

version="0.0.34",
version="0.0.35",

author="Ants, open innovation lab",
author_email="[email protected]",
Expand All @@ -23,8 +27,8 @@
"A python module to extract all the content of an Excel document "
"and enable calculation without Excel"
),

long_description=open("README.md").read(),
long_description_content_type='text/markdown',
long_description=long_description,

install_requires=[
'networkx >= 2.1',
Expand Down

0 comments on commit 18f4a6d

Please sign in to comment.