-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 962 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
import setuptools
setup(
name='indeed-job-scraper',
version='0.1.0',
author=['Anisha Pai', 'Quentin Dupupet'],
author_email='[email protected]',
packages=['indeed_job_scraper_package'],
# scripts=['bin/main.py','bin/functions.py'],
# url='http://pypi.python.org/pypi/TowelStuff/',
license='LICENSE.txt',
description='Indeed web scraper.',
long_description=open('README.md').read(),
python_requires='>=3.8',
install_requires=[
"beautifulsoup4==4.9.1",
"certifi==2020.6.20",
"chardet==3.0.4",
"idna==2.8",
"jellyfish==0.5.6",
"lxml==4.5.2",
"marshmallow==3.0.0rc1",
"meson==0.55.0",
"numpy==1.19.1",
"pandas==1.1.1",
"python-dateutil==2.8.1",
"pytz==2020.1",
"PyYAML==3.13",
"requests==2.22.0",
"six==1.15.0",
"soupsieve==2.0.1",
"urllib3==1.25.10",
"us==1.0.0"
],
)