-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing various issues with running tests, importing utils package and…
… installing this package
- Loading branch information
1 parent
fcf5e45
commit d614ca8
Showing
6 changed files
with
46 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
# see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/ | ||
[project] | ||
name = "Reddit-Scraping" | ||
|
||
dynamic = ["version"] | ||
|
||
dependencies = [ | ||
"boto3==1.26.117", | ||
"moto[dynamodb,s3]==4.1.8", | ||
"pre-commit==2.21.0", | ||
"praw==7.7.0", | ||
"pytest==7.3.1", | ||
"pytest-cov==4.0.0", | ||
"viral_reddit_posts_utils@git+https://github.com/ViralRedditPosts/Utils.git@main" | ||
] | ||
|
||
requires-python = "== 3.12.3" | ||
|
||
authors = [ | ||
{name = "Kenneth Myers", email = "[email protected]"}, | ||
] | ||
|
||
description = "This project scrapes Reddit data and loads it to a DynamoDB. It is intended to be run through an AWS Lambda function." | ||
|
||
readme = "README.md" | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters