Skip to content

Commit

Permalink
use setuptools instead of distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhong committed May 20, 2017
1 parent 3b5039d commit 77bf7c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'victor, wmonroe4, kelvinguu'

from distutils.core import setup, Command
from setuptools import setup, Command, find_packages


class UnitTest2(Command):
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 77bf7c0

Please sign in to comment.