-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (26 loc) · 1.21 KB
/
setup.py
File metadata and controls
26 lines (26 loc) · 1.21 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
from distutils.core import setup
setup(
name = "skills-labeller",
packages = ["skillslabller"],
version = "0.0.2",
description = "system for labelling skills within job postings",
author = ["Kwame Porter Robinson", "Greg Mundy", "Tristan Crockett"],
author_email = "",
url = "",
download_url = "https://github.com/workforce-data-initiative/skills-labeller",
keywords = ["skills", "job data", "workforce data"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: MIT",
"Operating System :: Link",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
long_description = """\
A workforce data initative related system for labelling and extracting skills within job postings. Implements an entire intelligent system utilizing a front end, pulling down job postings and online learning all under constrained system resources (e.g. EC2 micro/small) for ease of public use. Designed as a set of microservices.
"""
)