Skip to content

Commit

Permalink
0.9.4 Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Singh committed Jun 19, 2020
1 parent 8f577b4 commit 372c33f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lexpy/dawg.py
Expand Up @@ -81,4 +81,5 @@ def __len__(self):
:returns (int) Number of Nodes in the dawg data structure
:return:
"""
return 1+len(self.__minimized_nodes) # 1(for the root node) + Minimized list of nodes
# 1(for the root node) + Minimized list of nodes
return 1+len(self.__minimized_nodes)
9 changes: 8 additions & 1 deletion setup.py
@@ -1,6 +1,12 @@
from __future__ import unicode_literals
from __future__ import absolute_import

from os import path

this_directory = path.abspath(path.dirname(__file__))

with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()

from setuptools import setup, find_packages

Expand Down Expand Up @@ -49,7 +55,8 @@

setup(
name=DISTNAME,
long_description=LONG_DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
Expand Down

0 comments on commit 372c33f

Please sign in to comment.