From 8e5e92d951cbcbc12a6c1e44ecdb768252eda110 Mon Sep 17 00:00:00 2001 From: Shiwei Tong Date: Mon, 24 May 2021 18:16:03 +0800 Subject: [PATCH] [fix] potential ModuleNotFoundError --- CHANGE.txt | 3 +++ setup.py | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGE.txt b/CHANGE.txt index d3c3a8fe..8063e0e4 100644 --- a/CHANGE.txt +++ b/CHANGE.txt @@ -1,3 +1,6 @@ +v0.0.2: + 1. fix potential ModuleNotFoundError + v0.0.1: 1. Add Formula class to parse latex formula, which will generate the abstract syntax tree. 2. Add SIF v0.0.2. diff --git a/setup.py b/setup.py index 251c55a0..81b5b287 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages test_deps = [ 'pytest>=4', @@ -13,11 +13,12 @@ setup( name='EduNLP', - version='0.0.1', + version='0.0.2', extras_require={ 'test': test_deps, "tutor": tutor_deps }, + packages=find_packages(), install_requires=[ 'networkx', 'numpy',