-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.09 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.09 KB
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
import codecs
from setuptools import setup
from bin.demeuk import version
dependencies = [
'docopt',
'chardet',
'nltk',
'ftfy',
'unidecode',
'tqdm',
'transliterate'
]
with open('README.md', 'r') as r:
long_description = r.read()
setup(
name='demeuk',
version=version,
author='Netherlands Forensic Institute',
author_email=codecs.encode('ubyzrfay@hfref.abercyl.tvguho.pbz', 'rot-13'),
description='CLI tool to remove invalid chars from a corpus.',
install_requires=dependencies,
scripts=['bin/demeuk.py'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NetherlandsForensicInstitute/demeuk",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"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 :: 3.10",
],
)