Added build info to pyproject.toml and README.org

This commit is contained in:
Roger Gonzalez 2023-08-17 10:54:17 -03:00
parent 448991cee1
commit 416f6dd0b0
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 28 additions and 0 deletions

6
README.org Normal file
View File

@ -0,0 +1,6 @@
* UTE API Wrapper
:PROPERTIES:
:ID: fbbc5d08-8ee8-42d7-8175-f8552b71adfc
:END:
This is a sample text

View File

@ -38,3 +38,25 @@ ensure_newline_before_comments = true
line_length = 121 line_length = 121
skip = "dockerdata,.idea,static" skip = "dockerdata,.idea,static"
filter_files = true filter_files = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ute"
version = "1.0.0"
authors = [
{ name="Roger Gonzalez", email="roger@rogs.me" },
]
description = "A wrapper to interact with UTE's API"
readme = "README.org"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://gitlab.com/rogs/ute"