-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (34 loc) · 938 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
# see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "viral_reddit_posts_utils"
dynamic = ["version"]
dependencies = [
"boto3==1.26.117",
]
requires-python = "== 3.12.3"
authors = [
{name = "Kenneth Myers", email = "[email protected]"},
]
description = "This project contains the utils of the Viral Reddit Posts project. It is intended to be shared across different modules like data collection and model prediction."
readme = "README.md"
[project.optional-dependencies]
test = [
"moto[dynamodb,s3]==4.1.8",
"pytest==7.3.1",
"pytest-cov==4.0.0",
"viral_reddit_posts_utils"
]
build = [
"flake8",
"black",
"viral_reddit_posts_utils[test]"
]
dev = [
"pre-commit==2.21.0",
"viral_reddit_posts_utils[build]"
]
[tool.setuptools.packages]
find = {}