-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
56 lines (52 loc) · 1.47 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[metadata]
author = Brad Solomon
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Topic :: Utilities
Topic :: Text Processing
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
description = Accurately remove and replace emojis in text strings
keywords =
emoji
emojis
nlp
natural langauge processing
unicode
license = Apache-2.0
license_file = LICENSE
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
name = demoji
project_urls =
Source = https://github.com/bsolomon1124/demoji
Documentation = https://github.com/bsolomon1124/demoji/blob/master/README.md
Bug Reports = https://github.com/bsolomon1124/demoji/issues
url = https://github.com/bsolomon1124/demoji
version = attr:demoji.__version__
[options]
packages =
demoji
include_package_data = True
install_requires =
importlib_resources;python_version<"3.7"
python_requires = >=3.6
setup_requires =
pytest-runner
tests_require =
pytest
[options.entry_points]
console_scripts =
demoji = demoji.main:main
[options.extras_require]
ujson = ujson
[tool:pytest]
testpaths =
tests