Skip to content

Commit

Permalink
Add: minimal project
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyProger1 committed Jan 23, 2024
1 parent d0b8728 commit 60a014e
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,7 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/

# Linter
.ruff_cache
Empty file added examples/main.py
Empty file.
49 changes: 49 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"


[project]
name = "RestyClient"
version = "0.0.1"
authors = [
{ name = "crazyproger1", email = "[email protected]" },
]
description = "RestyClient is a simple, easy-to-use Python library for interacting with REST APIs usingPydantic's powerful data validation and deserialization tools."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
dependencies = [
"pydantic",
]

[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv"
]

[tool.mypy]
files = ["resty"]
show_error_codes = true
strict = true

Empty file added resty/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import setuptools

if __name__ == "__main__":
setuptools.setup()

0 comments on commit 60a014e

Please sign in to comment.