-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (48 loc) · 1.83 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
56
57
58
# in this file, we must first install the DB
# load the words in the DB
# then the user can simply import the lib and start
# using it
# !/usr/bin/env python
# -*- coding: utf8 -*-
import os
import setuptools
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
if filename.endswith(".txt"):
paths.append(os.path.join(path, filename))
print(paths)
return paths
extra_files = package_files('wordstats/language_data/')
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name="wordstats",
packages=setuptools.find_packages(),
version="1.0.10",
license="MIT",
description="Multilingual word frequency statistics for Python based on subtitles corpora",
long_description=long_description,
long_description_content_type='text/markdown',
author="Mircea Lungu",
author_email="mircea.lungu@gmail.com",
url="https://github.com/zeeguu-ecosystem/Python-Wordstats",
download_url="https://github.com/zeeguu-ecosystem/Python-Wordstats/archive/v_1.0.7.tar.gz",
include_package_data=True,
zip_safe=False,
keywords="natural language processing, multilingual",
package_data={'language_data': extra_files},
install_requires=("configobj",
"sqlalchemy"),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)