codeforces_scraper/setup.py

22 lines
565 B
Python
Raw Normal View History

2022-11-10 22:23:31 +03:00
import setuptools
setuptools.setup(
name='codeforces-scraper',
version='0.1.0',
author='thematdev',
author_email='thematdev@thematdev.org',
description='Utility to do actions on codeforces',
2023-01-24 20:58:23 +03:00
packages=['codeforces_scraper', 'codeforces_scraper.assets'],
2022-11-10 22:23:31 +03:00
install_requires=[
'bs4',
'lxml',
'pydantic',
'requests',
],
python_requires='>=3.8',
zip_safe=True,
package_data={
'codeforces_scraper.assets': ['*']
}
)