Skip to content

Commit b54f877

Browse files
author
Nito
committed
Version update
1 parent 844e865 commit b54f877

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

setup.py

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
setuptools.setup(
77
name="eld",
8-
version="0.9.1",
8+
version="1.0.3", # Update VERSION at languageDetector.py too
99
author="Nito T.M.",
10-
# author_email = "",
10+
# author_email = "",
1111
description="Fast and accurate natural language detection. Detector written in Python. Nito-ELD, ELD.",
1212
keywords='nlp language natural-language-processing natural-language language-detection language-detector language-identification',
1313
long_description=long_description,
@@ -19,18 +19,9 @@
1919
"License :: OSI Approved :: Apache Software License",
2020
"Operating System :: OS Independent",
2121
],
22-
package_dir={"": "src"},
23-
data_files=[('', ['demo.py']),
24-
('benchmarks',
25-
['benchmarks/bench.py',
26-
'benchmarks/big-test.txt',
27-
'benchmarks/sentences.txt',
28-
'benchmarks/sentences_avg_py.png',
29-
'benchmarks/single-words.txt',
30-
'benchmarks/table_accuracy_py.svg',
31-
'benchmarks/table_time_py.svg',
32-
'benchmarks/tweets.txt',
33-
'benchmarks/word-pairs.txt'])],
34-
packages=setuptools.find_packages(where="src"),
22+
# package_dir={'': 'eld'},
23+
# packages=setuptools.find_packages(where='eld'),
24+
packages=['eld', 'eld.tests', 'eld.resources', 'eld.resources.ngrams', 'eld.resources.ngrams.subset'],
25+
package_data={'eld.tests': ['data/*.txt']},
3526
python_requires=">=3.7"
3627
)

0 commit comments

Comments
 (0)