-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (32 loc) · 932 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
[project]
name = "FastSnake"
dynamic = ["version"]
description = "A Python Helper CLI for Competitive Programming"
authors = [
{ name = "Jean Loui Bernard Silva de Jesus", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
keywords = [
"cli", "helper", "contest", "codeforces", "algorithms", "structures", "competitive programming", "competition", "marathon"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers"
]
exclude = ["tests", ".flake8"]
requires-python = ">=3.6"
dependencies = ["beautifulsoup4", "requests"]
[project.optional-dependencies]
tests = [
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/JeanExtreme002/FastSnake"
[tool.hatch.version]
path = "fastsnake/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
fastsnake = "fastsnake.application.application:main"