Skip to content

Commit 7181f70

Browse files
Merge pull request #3 from FengzihangCode/main
Add Package
2 parents eee7da7 + 044761d commit 7181f70

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,4 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
.DS_Store

pyproject.toml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
44

55
[project]
66
name = "usf"
77
version = "0.1.0"
8+
description = "A lightweight Universal Schedule Format (USF) parser and generator."
9+
authors = [{ name = "USF-org", email = "USF-org@outlook.com" }]
10+
license = { text = "MIT" }
11+
readme = "README.md"
12+
requires-python = ">=3.6"
813
dependencies = []
9-
requires-python = ">=3.6"
14+
15+
[project.urls]
16+
Homepage = "https://github.com/USF-org"
17+
Repository = "https://github.com/USF-org/USF-Python"
18+
Issues = "https://github.com/USF-org/USF-Python/issues"
19+
20+
[tool.hatch.build]
21+
packages = ["usf"]

0 commit comments

Comments
 (0)