-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.11 KB
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "freezefs"
version = "2.2"
authors = [
{ name="Hermann von Borries", email="bixb922@gmail.com" }
]
description = "freezefs - Create self-mounting or self-extracting compressed archives for MicroPython"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: Implementation :: MicroPython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: MicroPython",
"Topic :: Desktop Environment :: File Managers"
]
[project.urls]
"Homepage" = "https://github.com/bixb922/freezefs"
"Bug Tracker" = "https://github.com/bixb922/freezefs/issues"
"Blog" = "https://solazyasueto.blogspot.com"