-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implements pyproject toml and change test filesystem
- Loading branch information
1 parent
947c7a4
commit f3249a8
Showing
3 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools_scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
[project] | ||
name = "Infinity-API" | ||
version = "1.1.0" | ||
description = "RESTFULL open API for rocketpy" | ||
dynamic = ["dependencies"] | ||
requires-python = ">=3.12" | ||
authors = [ | ||
{name = "Gabriel Barberini", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Aasit", email = "[email protected]"}, | ||
{name = "Luiz Mota", email = "[email protected]"} | ||
] | ||
readme = "README.md" | ||
keywords = ["rocketpy", "rocket flight", "simulation", "rocket", "flight"] | ||
classifiers = [ | ||
"Development Status :: Alpha", | ||
"Programming Language :: Python" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "http://api.rocketpy.org/" | ||
Documentation = "http://api.rocketpy.org/docs" | ||
Repository = "https://github.com/RocketPy-Team/infinity-api" | ||
"Bug Tracker" = "https://github.com/RocketPy-Team/Infinity-API/issues" | ||
|
||
[tool.black] | ||
line-length = 79 | ||
include = '\.py$' | ||
skip-string-normalization = true | ||
|
||
[tool.pylint] | ||
max-line-length = 79 | ||
disable = """ | ||
line-too-long, | ||
duplicate-code, | ||
use-dict-literal, | ||
missing-module-docstring, | ||
missing-function-docstring, | ||
missing-class-docstring, | ||
too-few-public-methods, | ||
too-many-public-methods, | ||
too-many-instance-attributes, | ||
logging-fstring-interpolation, | ||
broad-exception-raised, | ||
import-error, | ||
protected-access | ||
""" |
File renamed without changes.