-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
31 lines (28 loc) · 921 Bytes
/
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
import setuptools
dependencies = [
"numpy",
"pandas",
"nltk",
"spacy",
"jellyfish",
"ipython",
"scipy"
]
setuptools.setup(
name="skillNer",
version="1.0.3",
author="Anas Ait AOMAR & Badr MOUFAD",
author_email="[email protected]",
description="An NLP module to automatically Extract skills and certifications from unstructured job postings, texts, and applicant's resumes",
url="https://github.com/AnasAito/SkillNER",
keywords=["skillNer", 'python', 'NLP', "NER",
"skills-extraction", "job-description"],
download_url='https://github.com/AnasAito/SkillNER/archive/refs/tags/v1.0.3.tar.gz',
packages=setuptools.find_packages(),
install_requires=dependencies,
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
],
)