-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lix/rix to readability + option for mean only
- Loading branch information
Showing
2 changed files
with
34 additions
and
10 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 |
---|---|---|
|
@@ -2,13 +2,23 @@ | |
|
||
setup(name='textdescriptives', | ||
version='0.1', | ||
description='A package for calculating a wide variety of features from text', | ||
url='https://github.com/HLasse/TextDescriptives', | ||
author='Lasse Hansen', | ||
author_email='[email protected]', | ||
description='A package for calculating a wide variety of features from text', | ||
long_description=open('README.md', encoding='utf-8').read(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/HLasse/TextDescriptives', | ||
license='MIT', | ||
packages=['textdescriptives'], | ||
install_requires=['pandas','numpy'], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Text Processing", | ||
"Topic :: NLP" | ||
] | ||
install_requires=['pandas','numpy', 'pyphen', 'pycountry'], | ||
python_requires='>=3.6' | ||
zip_safe=False, | ||
include_package_data=True) | ||
|
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