forked from PaulMcInnis/JobFunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.13 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
from setuptools import setup, find_packages
from jobfunnel import __version__ as version
description = 'Automated tool for scraping job postings.'
url = 'https://github.com/PaulMcInnis/JobFunnel'
requires = ['beautifulsoup4>=4.6.3',
'lxml>=4.2.4',
'requests>=2.19.1',
'python-dateutil>=2.8.0',
'PyYAML>=5.1',
'scikit-learn>=0.21.2',
'nltk >= 3.4.1',
'scipy >= 1.4.1',
]
with open('readme.md', 'r') as f:
readme = f.read()
setup(
name = 'JobFunnel',
version = version,
description = description,
long_description = readme,
author = 'Paul McInnis, Bradley Kohler, Jose Alarcon, Erich Mengore',
author_email = '[email protected]',
url = url,
license = 'MIT License',
python_requires = '>=3.6.0',
install_requires = requires,
packages = find_packages(exclude=('demo',)),
include_package_data = True,
entry_points = {'console_scripts': ['funnel = jobfunnel.__main__:main']})