forked from sakovias/ESG_Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 969 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
from setuptools import setup
from setuptools import find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ESGScraper",
version='1.0.0',
description='Package that allows you to find ESG ratings from Yahoo\
Finance, MSCI, CSR Hub, S&P Global, SustainAnalytics. In addition,\
financial information is also scraped from Yahoo Finance',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/shweta-29/Companies_ESG_Scraper.git',
download_url='https://github.com/shweta-29/Companies_ESG_Scraper/archive/refs/tags/v_01.tar.gz',
author='Shweta Yadav',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=['selenium', 'pandas', 'tqdm', 'sqlalchemy'],
include_package_data=True,
package_data={'': ['data/*.csv']}
)