forked from iowlabs/FluOpti
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (23 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
30 lines (23 loc) · 824 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "your-project-name"
version = "0.1.0"
description = "Description of your project"
authors = ["Your Name <your.email@example.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
# Add your project dependencies here
[tool.poetry.dev-dependencies]
# Add development dependencies here, such as testing frameworks, linters, etc.
[tool.poetry.scripts]
# Add script entry points here if your project provides any
[tool.poetry.extras]
# Define optional extras here if your project supports them
[tool.poetry.publish]
# Configure options for publishing your project, such as PyPI or other package repositories
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"