forked from sammous/spacy-lefff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.63 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
#!/usr/bin/env python
# coding: utf8
from pathlib import Path
from setuptools import setup, find_packages
import os
def setup_package():
package_name = 'spacy_lefff'
root = Path(__file__).parent.resolve()
# Get readme
readme_path = root / 'README.md'
with readme_path.open('r', encoding='utf8') as f:
readme = f.read()
setup(
name='spacy-lefff',
description=' Custom French POS and lemmatizer based on Leff for spacy',
long_description=readme,
long_description_content_type='text/markdown',
author='sami moustachir',
author_email='[email protected]',
url='https://github.com/sammous/spacy-lefff',
version='0.2.1',
license='MIT',
packages=find_packages(exclude=['tests']),
package_data={'spacy_lefff': ['data/*']},
tests_require=['pytest', 'pytest-cov'],
install_requires=[
'spacy>=2.0.0,<=2.0.9'],
zip_safe=False,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
if __name__ == '__main__':
setup_package()