From 77bf7c0f049740526e19cd9019f386581ff58b91 Mon Sep 17 00:00:00 2001 From: Victor Zhong Date: Sat, 20 May 2017 16:21:35 -0700 Subject: [PATCH] use setuptools instead of distutils --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4ff297b..c18d0a5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ __author__ = 'victor, wmonroe4, kelvinguu' -from distutils.core import setup, Command +from setuptools import setup, Command, find_packages class UnitTest2(Command): @@ -73,8 +73,8 @@ def run(self): setup( name='stanza', - version='0.2', - packages=['stanza', 'stanza.text', 'stanza.monitoring', 'stanza.util'], + version='0.3', + packages=find_packages(exclude=['docs', 'test']), url='https://github.com/stanfordnlp/stanza', license='MIT', author='Stanford NLP',