-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pkg_resources
from pathlib import Path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='russian_uncensor',
packages=['russian_uncensor'],
version='0.1.7',
license='MIT',
description='Uncensor for russian masked or separated obscene words based on frequent letters, bi- and tri-grams analysis',
long_description=long_description,
long_description_content_type='text/markdown',
author='Alex Klyuev',
author_email='Klyukvanstalker@gmail.com',
url='https://github.com/AlexKly/russian_uncensor',
download_url='https://github.com/AlexKly/russian_uncensor/archive/refs/tags/0.0.1.tar.gz',
keywords=['uncensor', 'obscene words', 'swear words', 'n-grams'],
install_requires=['marisa_trie'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
package_dir={'russian_uncensor': 'russian_uncensor'},
package_data={'russian_uncensor': ['data/*.marisa', 'data/ngrams/*.marisa']},
)