forked from briancline/crm114-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Err... remove extraneous package in setup
- Loading branch information
1 parent
e067674
commit 27cc733
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,18 @@ | |
|
||
setup( | ||
name='crm114', | ||
version='2.0.0', | ||
version='2.0.1', | ||
author='Brian Cline', | ||
author_email='[email protected]', | ||
description=('Python wrapper classes for the CRM-114 Discriminator ' | ||
'(http://crm114.sourceforge.net/)'), | ||
license = 'MIT', | ||
keywords = 'crm114 text analysis classifier', | ||
url = 'http://packages.python.org/crm114', | ||
packages=['crm114', 'tests'], | ||
packages=['crm114'], | ||
long_description='See README.md for full details, or ' | ||
'https://github.com/briancline/crm114-python' | ||
'/blob/v2.0.0/README.md.', | ||
'/blob/v2.0.1/README.md.', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: MIT License', | ||
|