-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (33 loc) · 1009 Bytes
/
setup.py
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
33
34
35
36
from io import open
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
if __name__ == "__main__":
setup(
version="2.1",
name="pyinfra-docker",
description="Install & configure Docker with `pyinfra`.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/Fizzadar/pyinfra-docker",
author="Nick / Fizzadar",
license="MIT",
packages=find_packages(),
install_requires=("pyinfra>=2,<3",),
extras_require={
"test": [
"pytest",
"pytest-testinfra",
],
"lint": [
"black",
"isort",
"flake8",
"flake8-black",
"flake8-isort",
"flake8-commas",
],
},
include_package_data=True,
)