-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·55 lines (53 loc) · 2.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='asrt',
version='1.0',
author="Alexandre Nanchen",
author_email="alexandre.nanchen@idiap.ch",
description="Text unformatting and classification library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/idiap/asrt",
keywords="Text, unformatting, processing",
license="BSD 3-Clause License",
packages=setuptools.find_packages(),
zip_safe = False,
include_package_data = True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3-Clause",
"Operating System :: Linux",
],
install_requires =[
"nltk",
"roman",
"num2words",
"unicodecsv",
],
scripts = [
"asrt/data-preparation/bash/run_data_preparation.sh",
"asrt/data-preparation/python/run_apply_regex.py",
"asrt/data-preparation/python/run_data_preparation_individual_files.py",
"asrt/data-preparation/python/run_data_preparation.py",
"asrt/data-preparation/python/run_data_preparation_task.py",
"asrt/data-preparation/python/run_test_regex.py",
"asrt/examples/bash/run_data_preparation.sh",
"asrt/examples/bash/run_data_preparation_task.sh",
"asrt/config/AsrtConfig.sh",
"asrt/setenv",
],
package_data={'asrt': ['examples/resources/*',
'data-preparation/python/2012_05_Sessiondemai2012.pdf',
'data-preparation/python/2015.03_Sessiondemars2015.pdf',
'data-preparation/python/regex_mediaparl.csv',
'common/unit_test/resources/*.txt',
'common/unit_test/resources/*.csv',
'common/unit_test/resources/*.pdf',
'common/unit_test/resources/target-folder-1/*',
'common/unit_test/resources/target-folder-2/*',
'common/unit_test/resources/target-folder-err-1/*',
'common/unit_test/resources/target-folder-err-2/*',
'common/unit_test/resources/target-folder-err/*']}
)