-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (24 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
32 lines (24 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "adr.ca"
version = "2.0"
description = "ADR is a python library to analyse aircraft conceptual designs. ADR has several tools that allows one to create different aircraft designs and analyse those from different points os view."
packages = [
{ include = "adr", from = "" }
]
authors = ["Rafael Araujo Lehmkuhl <rafael.lehmkuhl93@gmail.com>"]
maintainers = ["Rafael Araujo Lehmkuhl <rafael.lehmkuhl93@gmail.com>", "João Gabriel Firta Foes <firtafoes@gmail.com>", "Cassiano Montibeller <cassianomonbeller@gmail.com>"]
license = "MIT"
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/CeuAzul/ADR"
homepage = "https://CeuAzul.github.io/ADR"
[tool.poetry.dependencies]
python = "^3.8"
vec = "^0.5"
scipy = "^1.5.2"
attrs = "^19.3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-mock = "^3.2.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"