New package: py-clean-text (#26511)
* [py-clean-text] created template * [py-clean-text] - added description - added dependencies - removed fixmes
This commit is contained in:
parent
affd2236e6
commit
3945e2ad93
1 changed files with 21 additions and 0 deletions
21
var/spack/repos/builtin/packages/py-clean-text/package.py
Normal file
21
var/spack/repos/builtin/packages/py-clean-text/package.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyCleanText(PythonPackage):
|
||||
"""User-generated content on the Web and in social media is
|
||||
often dirty. Preprocess your scraped data with clean-text
|
||||
to create a normalized text representation."""
|
||||
|
||||
pypi = "clean-text/clean-text-0.5.0.tar.gz"
|
||||
|
||||
version('0.5.0', sha256='e525951bef0c8b72e03c987fdac2c475b61d7debf7a8834366fd75716179b6e1')
|
||||
|
||||
depends_on('python@3.6:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-emoji', type=('build', 'run'))
|
||||
depends_on('py-ftfy@6.0:6.999', type=('build', 'run'))
|
Loading…
Reference in a new issue