-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (38 loc) · 998 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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
test_deps = [
"pytest",
"pytest-pylint",
"pytest-cov"
]
extras = {
'test': test_deps,
}
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='jobs_scraper',
version='0.0.11',
description="A simple job postings scraper for Indeed based on requests and BeautifulSoup.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/vittoriotriassi/jobs_scraper',
author='Vittorio Triassi',
author_email='vi.triassi@gmail.com',
license='MIT',
classifiers=classifiers,
packages=find_packages(),
tests_require=test_deps,
# Add here the package dependencies
install_requires=[
'pandas',
'requests',
'bs4',
'tqdm',
'lxml',
],
extras_require=extras,
)