-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 801 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
[tool.poetry]
name = "nixops_aws"
version = "1.0"
description = "NixOps AWS plugin"
authors = ["adisbladis <adisbladis@gmail.com>"]
license = "LGPL-3.0-only"
include = [ "nixops_aws/nix/*.nix" ]
[tool.poetry.dependencies]
python = "^3.7"
boto = "^2.49.0"
boto3 = "^1.13.7"
nixops = {git = "https://github.com/NixOS/nixops.git", rev = "master"}
typing-extensions = ">=3.7 <=5"
nixos-modules-contrib = {git = "https://github.com/nix-community/nixos-modules-contrib.git", rev = "master"}
[tool.poetry.dev-dependencies]
nose = "^1.3.7"
mypy = "^0.770"
black = "^19.10b0"
flake8 = "^3.8.2"
boto3-stubs = {extras = ["ec2", "sqs", "efs", "rds"], version = "^1.13.8"}
[tool.poetry.plugins."nixops"]
aws = "nixops_aws.plugin"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"