-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 963 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 = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modinit"
version = "0.1.1"
description = "A tool for initializing AI model training repositories"
readme = "README.md"
authors = [{name = "eddiegulay", email = "edgargulay@outlook.com"}]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["ai", "machine learning", "project structure", "initialization"]
dependencies = []
requires-python = ">=3.6"
[project.urls]
"Homepage" = "https://github.com/eddiegulay/modinit"
"Bug Tracker" = "https://github.com/eddiegulay/modinit/issues"
[project.scripts]
modinit = "modinit.cli:main"