Skip to content

Commit ac1587e

Browse files
committed
add pyproject.toml
1 parent ad630cd commit ac1587e

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

pyproject.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[project]
2+
name = "GaiaFlow"
3+
authors = [
4+
{name = "Yogesh Kumar Baljeet Singh", email = "[email protected]"},
5+
]
6+
description = """\
7+
GaiaFlow is a MLOps tool that streamlines the Earth Observation ML projects.
8+
NOTE: This is only to make sure that while testing this repository, pytest does not include the tests from the
9+
to-be-generated project from the `cookiecutter.folder_name` package.
10+
"""
11+
keywords = [
12+
"Airflow",
13+
"MLFlow",
14+
"MLOps",
15+
"MinIO",
16+
"Python",
17+
"Earth Observation",
18+
"Remote Sensing",
19+
"Machine Learning",
20+
"Deep Learning"
21+
]
22+
version = "0.1.1"
23+
readme = { file = "README.md", content-type = "text/markdown" }
24+
license = { file = "LICENSE", content-type = "text/plain" }
25+
requires-python = ">=3.12"
26+
classifiers = [
27+
"Development Status :: 3 - Alpha",
28+
"Intended Audience :: Developers",
29+
"Topic :: Software Development :: Build Tools",
30+
"Programming Language :: Python :: 3.12",
31+
]
32+
33+
[tool.pytest.ini_options]
34+
norecursedirs = ["{{ cookiecutter.folder_name }}", "//*"]

0 commit comments

Comments
 (0)