forked from kbrajwani/resume_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 2.1 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 2.1 KB
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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name = 'resume_parser', # How you named your package folder (MyLib)
packages = ['resume_parser'], # Chose the same as "name"
version = '0.8.4', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'A resume parser used for extracting information from resumes', # Give a short description about your library
author = 'kumar', # Type in your name
author_email = 'kumarrajwani1811@gmail.com', # Type in your E-Mail
url = 'https://github.com/kbrajwani/resume_parser', # Provide either the link to your github or to your website
long_description=open('README.rst', encoding="utf8").read(),
# download_url = 'https://github.com/kbrajwani/resume_parser/archive/v_01.tar.gz', # I explain this later on
keywords = ['resume', 'parser', 'cv'], # Keywords that define your package best
include_package_data=True,
install_requires=[ # I get to this in a second
'docx2txt>=0.8',
'nltk>=3.5',
'numpy>=1.19.1',
'pandas>=1.1.0',
'pdfminer.six>=20200517',
'pdfplumber>=0.7.4',
'phonenumbers>=8.12.7',
'spacy>=2.3.2',
'stemming>=1.0.1',
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'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',
],
zip_safe=False,
)