aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 36e690b12d26c477a14ee5457f658bae3343a076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
from setuptools import setup

setup(
    name="Blimp",
    install_requires=[
        "appdirs>=1.4",
        "requests>=2.25",
        "ruamel.yaml>=0.17",
        "ruamel.yaml.clib>=0.2",
        "urllib3>=1.26"
    ]
)