Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Implements environment route tests#37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
4f4cb409d8ab71d726d289fd33f3a2bfdcc4be60a6fc4de1312bf7d33cfd5701d60ae4File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,7 @@ | ||
| [build-system] | ||
| requires = ["setuptools", "setuptools_scm"] | ||
| build-backend = "setuptools.build_meta" | ||
| [tool.setuptools.dynamic] | ||
| dependencies = {file = ["requirements.txt"]} | ||
| [project] | ||
| name = "Infinity-API" | ||
| version = "2.2.0" | ||
| version = "2.3.0" | ||
| description = "RESTFULL open API for rocketpy" | ||
| dynamic = ["dependencies"] | ||
| requires-python = ">=3.12" | ||
| authors = [ | ||
| {name = "Gabriel Barberini", email = "gabrielbarberinirc@gmail.com"} | ||
| @@ -21,7 +13,7 @@ maintainers = [ | ||
| readme = "README.md" | ||
| keywords = ["rocketpy", "API", "simulation", "rocket", "flight"] | ||
| classifiers = [ | ||
| "Development Status :: Alpha", | ||
| "Development Status :: Production", | ||
| "Programming Language :: Python" | ||
| ] | ||
| @@ -52,3 +44,14 @@ disable = """ | ||
| raise-missing-from, | ||
| too-many-instance-attributes, | ||
| """ | ||
| [tool.ruff] | ||
| line-length = 79 | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 79? I usually see 88 instead CollaboratorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For the API development we set PEP-8 as a north | ||
| target-version = "py312" | ||
| [tool.ruff.lint] | ||
| select = ["E", "F", "N", "Q"] | ||
| ignore = ["N815", "E501", "Q000", "E402"] | ||
| fixable = [ | ||
| "F401", | ||
| ] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| flake8 | ||
| pylint | ||
| ruff |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.