Skip to content

Commit

Permalink
Updated metadata and bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tsproisl committed Jul 4, 2018
1 parent b316bf8 commit b50421f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
with open(path.join(here, 'README.rst')) as fh:
long_description = fh.read()

version = "1.7.0"
version = "1.8.0"

setup(
name='SoMaJo',
Expand All @@ -30,15 +30,21 @@
'bin/tokenizer',
],
package_data={
'somajo': ["abbreviations.txt",
'somajo': ["abbreviations_de.txt",
"abbreviations_en.txt",
"camel_case_tokens.txt",
"single_token_abbreviations.txt",
"eos_abbreviations.txt",
"non-breaking_hyphenated_words_en.txt",
"non-breaking_prefixes_en.txt",
"non-breaking_suffixes_en.txt",
"single_token_abbreviations_de.txt",
"single_token_abbreviations_en.txt",
"tokens_with_plus_or_ampersand.txt"]
},
url="https://github.com/tsproisl/SoMaJo",
download_url='https://github.com/tsproisl/SoMaJo/archive/v%s.tar.gz' % version,
license='GNU General Public License v3 or later (GPLv3+)',
description='A tokenizer and sentence splitter for German web and social media texts.',
description='A tokenizer and sentence splitter for German and English web and social media texts.',
long_description=long_description,
install_requires=[
"regex",
Expand All @@ -50,6 +56,7 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: German',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
Expand Down

0 comments on commit b50421f

Please sign in to comment.