-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 785 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 785 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reddit_bot_cli"
version = "0.0.6"
authors = [
{ name = "Vashon Gonzales", email = "vashon@itscoop.com" },
]
description = "A Reddit bot for automating tasks."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"praw>=7.0,<8.0",
"transformers>=4.28.1,<5.0.0",
"torch>=2.0.1,<3.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/VashonG/reddit-bot"
Issues = "https://github.com/VashonG/reddit-bot/issues"
[project.scripts]
reddit-bot-cli = "reddit_bot.cli:main"