-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (40 loc) · 1.42 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
import nlcodec
from pathlib import Path
from setuptools import setup, find_packages
long_description = Path('README.md').read_text(encoding='utf-8', errors='ignore')
classifiers = [ # copied from https://pypi.org/classifiers/
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
]
setup(
name='nlcodec',
version=nlcodec.__version__,
description=nlcodec.__description__,
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache Software License 2.0',
classifiers=classifiers,
python_requires='>=3.7',
url='https://github.com/thammegowda/bpepp',
download_url='https://github.com/thammegowda/bpepp',
platforms=['any'],
author='Thamme Gowda',
author_email='[email protected]',
packages=find_packages(exclude=['experimental']),
entry_points={
'console_scripts': [
'nlcodec=nlcodec.__main__:main',
'nlcodec-learn=nlcodec.learn:main',
'nlcodec-db=nlcodec.bitextdb:main',
'nlcodec-freq=nlcodec.term_freq:main'
],
},
install_requires=['tqdm', 'numpy']
)