forked from PaulMcInnis/JobFunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.15 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
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',
'pytest>=5.3.1',
'selenium>=3.141.0',
'webdriver-manager>=2.4.0'
]
with open('readme.md', 'r') as f:
readme = f.read()
setup(
name='JobFunnel',
version=version,
description=description,
long_description=readme,
long_description_content_type='text/markdown',
author='Paul McInnis, Bradley Kohler, Jose Alarcon, Erich Mengore, Mark van der Broek',
author_email='[email protected]',
url=url,
license='MIT License',
python_requires='>=3.6.0',
install_requires=requires,
packages=find_packages(exclude=('demo', 'tests')),
include_package_data=True,
entry_points={'console_scripts': ['funnel = jobfunnel.__main__:main']})