mirror of
https://github.com/jfilter/clean-text.git
synced 2021-09-19 22:32:58 +03:00
29 lines
821 B
Python
29 lines
821 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
classifiers = [
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'License :: OSI Approved :: MIT License',
|
|
]
|
|
|
|
version = '0.0.0'
|
|
|
|
setup(name='cleantext',
|
|
version=version,
|
|
description='Clean your dirty text',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author='Johannes Filter',
|
|
author_email='ragha@outlook.com, hi@jfilter.de',
|
|
url='https://github.com/jfilter/clean-text',
|
|
license='MIT',
|
|
install_requires=['ftfy'],
|
|
extras_require={'gpl': ['unidecode']},
|
|
include_package_data=True,
|
|
classifiers=classifiers,
|
|
packages=find_packages())
|