new-infofer-scraper/scraper/setup.py

8 lines
171 B
Python
Raw Permalink Normal View History

2021-08-22 15:41:55 +03:00
from distutils.core import setup
setup(
name='InfoFer_Scraper',
version='0.1',
author='Dan Cojocaru',
2021-08-23 20:12:10 +03:00
install_requires=['beautifulsoup4', 'requests', 'pytz']
2021-08-22 15:41:55 +03:00
)