-
-
Notifications
You must be signed in to change notification settings - Fork 413
/
setup.py
60 lines (58 loc) · 1.79 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
59
60
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pyresparser',
version='1.0.6',
description='A simple resume parser used for extracting information from resumes',
long_description=open('README.rst').read(),
url='https://github.com/OmkarPathak/pyresparser',
author='Omkar Pathak',
author_email='[email protected]',
license='GPL-3.0',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
install_requires=[
'attrs>=19.1.0',
'blis>=0.2.4',
'certifi>=2019.6.16',
'chardet>=3.0.4',
'cymem>=2.0.2',
'docx2txt>=0.7',
'idna>=2.8',
'jsonschema>=3.0.1',
'nltk>=3.4.3',
'numpy>=1.16.4',
'pandas>=0.24.2',
'pdfminer.six>=20181108',
'preshed>=2.0.1',
'pycryptodome>=3.8.2',
'pyrsistent>=0.15.2',
'python-dateutil>=2.8.0',
'pytz>=2019.1',
'requests>=2.22.0',
'six>=1.12.0',
'sortedcontainers>=2.1.0',
'spacy>=2.1.4',
'srsly>=0.0.7',
'thinc>=7.0.4',
'tqdm>=4.32.2',
'urllib3>=1.25.3',
'wasabi>=0.2.2'
],
zip_safe=False,
entry_points = {
'console_scripts': ['pyresparser=pyresparser.command_line:main'],
}
)