Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverie-PC committed Jun 11, 2018
0 parents commit 909cb30
Show file tree
Hide file tree
Showing 48 changed files with 3,455 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/sent_segment.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

255 changes: 255 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2018 The Python Packaging Authority

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Example Package
This is an API for sentence segmentation.
Binary file added dist/sent_segment-1.0.tar.gz
Binary file not shown.
14 changes: 14 additions & 0 deletions sent_segment.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Metadata-Version: 2.1
Name: sent-segment
Version: 1.0
Summary: A sentence segmentation API
Home-page: https://github.com/reverieinc/rosetta_apis
Author: Reverie Language Technologies
Author-email: astha.manchanda@reverieinc.com
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
24 changes: 24 additions & 0 deletions sent_segment.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
README.md
setup.py
sent_segment/__init__.py
sent_segment/language_utility.py
sent_segment.egg-info/PKG-INFO
sent_segment.egg-info/SOURCES.txt
sent_segment.egg-info/dependency_links.txt
sent_segment.egg-info/requires.txt
sent_segment.egg-info/top_level.txt
sent_segment/preprocessor/__init__.py
sent_segment/preprocessor/preprocessor.py
sent_segment/preprocessor/tagger.py
sent_segment/settings/__init__.py
sent_segment/settings/common.py
sent_segment/settings/dev.py
sent_segment/settings/entity_tagging.py
sent_segment/settings/indic_settings.py
sent_segment/settings/local.py
sent_segment/settings/prod.py
sent_segment/settings/stag.py
sent_segment/utils/__init__.py
sent_segment/utils/misc_utils.py
sent_segment/utils/spacy_utils.py
sent_segment/utils/text_utils.py
1 change: 1 addition & 0 deletions sent_segment.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions sent_segment.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
markdown
1 change: 1 addition & 0 deletions sent_segment.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sent_segment
3 changes: 3 additions & 0 deletions sent_segment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from utils.spacy_utils import SpacyUtils
name = "sent_segment"
spacy_utils = SpacyUtils()
Binary file added sent_segment/__init__.pyc
Binary file not shown.

0 comments on commit 909cb30

Please sign in to comment.