8 lines
163 B
Python
8 lines
163 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='InfoFer_Scraper',
|
||
|
version='0.1',
|
||
|
author='Dan Cojocaru',
|
||
|
install_requires=['beautifulsoup4', 'requests']
|
||
|
)
|