-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 906 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
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "assistant_OZTeam"
version = "0.0.1"
authors = [{ name="Fyodor"},
{ name="Maya"},
{ name="Sergiy"},
{ name="Viktoriia"}
]
description = "Simple CPI assistant bot that helps you store and manage your contacts, notes and organize files"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/FyodorSh/GoIT_PyCore_Project"
"Dev Maya" = "https://github.com/MayaZerko"
"Dev Fyodor" = "https://github.com/FyodorSh"
"Dev Sergiy" = "https://github.com/3Seryoga"
"Dev Viktoriia" = "https://github.com/Trotoria"
[tool.setuptools.packages.find]
where = ["src"]
include = ["assistant*"]
[project.scripts]
"assistant" = "assistant:main"