Skip to content

Commit

Permalink
Trying to make PyPi copy the berkeley parser over.
Browse files Browse the repository at this point in the history
  • Loading branch information
meyersbs committed Sep 14, 2016
1 parent d5417cd commit e3b6474
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

# Include the license file
include LICENSE.md

# Include the data files
recursive-include splat *.jar *.gr
recursive-include splat/parse/ *.jar *.gr

global-exclude *~
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='SPLAT-library',
version='0.1.8',
version='0.1.9',
description='Speech Processing & Linguistic Analysis Tool',
long_description="SPLAT is a command-line application designed to make it easy for linguists (both computer-oriented and non-computer-oriented) to use the Natural Language Tool Kit (NLTK) for analyzing virtually any text file.\n\nSPLAT is designed to help you gather linguistic features from text files and it is assumed that most input files will not be already annotated. In order for SPLAT to function properly, you should ensure that the input files that you provide do not contain any annotations. Because there are so many variations of linguistic annotation schemes, it would simply be impossible to account for all of them in the initial parsing of input files; it is easier for you to remove any existing annotations than it is for me to do so.",
url='http://splat-library.org',
Expand All @@ -11,6 +11,7 @@
license='MIT',
scripts=['splat/base/splat-cli'],
keywords=['nlp', 'natural language', 'natural language processing'],
include_package_data=True,
packages=[
'splat',
'splat.annotation',
Expand All @@ -24,7 +25,7 @@
'splat.tag',
'splat.tokenizers'
],
download_url='https://github.com/meyersbs/SPLAT/tarball/0.1.8',
download_url='https://github.com/meyersbs/SPLAT/tarball/0.1.9',
requires=['matplotlib', 'nltk'],
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit e3b6474

Please sign in to comment.