-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
58 lines (52 loc) · 1.81 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "codemark"
# description = "CodeMark CLI is a command-line interface that helps you manage your coding assignments and tests.\nWith this tool, you can easily initialize the configuration, list assignments, fetch and check your code, submit your code for grading, and get AI-powered error recommendations."
description = "CodeMark CLI is a command-line interface that helps you manage your coding assignments and tests."
version = "0.2.2"
authors = ["Lab Rat <dev.frolics@gmail.com>"]
maintainers = [
"Lab Rat <dev.frolics@gmail.com>",
"real-Vansh-Khare <kharevansh13@gmail.com>"
]
keywords = ["python", "cli", "firebase", "click"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Topic :: Education",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Education",
"Intended Audience :: Developers",
]
repository = "https://github.com/rootCircle/codemark-cli"
documentation = "https://github.com/rootCircle/codemark-cli#readme"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv="^0.21.1"
click = "^8.1.7"
Pyrebase4 = "^4.7.1"
firebase-admin = "^6.2.0"
openai = "^0.28.1"
keyring = "^24.2.0"
appdirs = "^1.4.4"
tabulate = "^0.9.0"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = "^0.22.0"
psutil = "^5.9.5"
rapidfuzz = "^3.0.0"
requests = "^2.19.1"
requests-toolbelt = "0.10.1"
trogon = "^0.5.0"
termcolor = "^2.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
codemark = "codemark.scripts.cm_cli:cli"
cmk = "codemark.scripts.cm_cli:cli"
# [package.metadata.package_data]
# codemark = ["firebase/res/service-account-file.json"]