setup: update version number and dependencies

This commit is contained in:
Robyn Speer 2018-03-08 16:26:24 -05:00
parent 5ab5d2ea55
commit a4d9614e39
2 changed files with 7 additions and 2 deletions

5
setup.cfg Normal file
View File

@ -0,0 +1,5 @@
[nosetests]
verbosity=2
with-doctest=1
with-coverage=0
cover-package=wordfreq

View File

@ -28,7 +28,7 @@ README_contents = open(os.path.join(current_dir, 'README.md'),
encoding='utf-8').read()
doclines = README_contents.split("\n")
dependencies = [
'ftfy >= 5', 'msgpack', 'langcodes >= 1.4', 'regex == 2017.07.28'
'msgpack', 'langcodes >= 1.4.1', 'regex == 2018.02.21'
]
if sys.version_info < (3, 4):
dependencies.append('pathlib')
@ -36,7 +36,7 @@ if sys.version_info < (3, 4):
setup(
name="wordfreq",
version='1.7.0',
version='2.0',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
url='http://github.com/LuminosoInsight/wordfreq/',