-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from allo-media/master
Version 2.0.0: English support.
- Loading branch information
Showing
14 changed files
with
1,006 additions
and
399 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
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
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
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
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 |
---|---|---|
@@ -1,33 +1,35 @@ | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
|
||
VERSION = '1.4.0' | ||
VERSION = "2.0.0" | ||
|
||
|
||
def readme(): | ||
with open('README.rst', encoding='utf-8') as f: | ||
with open("README.rst", encoding="utf-8") as f: | ||
return f.read() | ||
|
||
|
||
setup(name='text2num', | ||
version=VERSION, | ||
description='Parse and convert numbers written in French into their digit representation.', | ||
long_description=readme(), | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Text Processing :: Linguistic', | ||
'Topic :: Text Processing :: Filters', | ||
'Natural Language :: French' | ||
], | ||
keywords='French NLP words-to-numbers', | ||
url='https://github.com/allo-media/text2num', | ||
author='Allo-Media', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=['text_to_num'], | ||
python_requires='>=3', | ||
test_suite='tests', | ||
include_package_data=True, | ||
zip_safe=False) | ||
setup( | ||
name="text2num", | ||
version=VERSION, | ||
description="Parse and convert numbers written in French or English into their digit representation.", | ||
long_description=readme(), | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Text Processing :: Linguistic", | ||
"Topic :: Text Processing :: Filters", | ||
"Natural Language :: French", | ||
], | ||
keywords="French and English NLP words-to-numbers", | ||
url="https://github.com/allo-media/text2num", | ||
author="Allo-Media", | ||
author_email="[email protected]", | ||
license="MIT", | ||
packages=find_packages(), | ||
python_requires=">=3.7", | ||
test_suite="tests", | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |
Oops, something went wrong.