fixed problems in recommendationengine class, updated README

This commit is contained in:
Tristan Lee
2022-08-09 09:45:40 -05:00
parent b18e5591fa
commit cb30169ece
6 changed files with 60 additions and 43 deletions

View File

@@ -10,36 +10,39 @@ from setuptools import setup
def readme( ):
with open( os.path.abspath(
os.path.join(
os.path.dirname( __file__ ),
'README.md' ) ) ) as f:
os.path.join(
os.path.dirname( __file__ ),
'README.md' ) ) ) as f:
return f.read( )
return f.read( )
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#
setup(
name = 'polyphemus',
version = '0.1',
description = 'Scraping Odysee video data',
long_description = readme( ),
author = 'Bellingcat',
packages = [
'polyphemus' ],
install_requires = [
'requests >= 2.27.0',
'beautifulsoup4 >= 4.10.0',
'pandas >= 1.4.0'],
extras_require = {
'docs': [
'sphinx >= 3.3.1',
'sphinx_rtd_theme >= 0.5',],
'tests': [
'pytest >= 6.1.2',
'pytest-cov >= 2.10.1',
'pytest-html >= 3.0.0',
'pytest-metadata >= 1.10.0']},
include_package_data = True,
zip_safe = False )
name = 'polyphemus',
version = '0.1',
description = 'Scraping Odysee video data',
long_description = readme(),
author = 'Bellingcat',
packages = [
'polyphemus'],
install_requires = [
'requests >= 2.27.0',
'beautifulsoup4 >= 4.10.0',
'pandas >= 1.4.0'],
extras_require = {
'docs': [
'sphinx >= 3.3.1',
'sphinx_rtd_theme >= 0.5',],
'tests': [
'pytest >= 6.1.2',
'pytest-cov >= 2.10.1',
'pytest-html >= 3.0.0',
'pytest-metadata >= 1.10.0']},
include_package_data = True,
zip_safe = False,
entry_points = {
'console_scripts': [
'polyphemus = polyphemus._cli:main']})
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#