forked from Erik-Lamers1/vnet-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (19 loc) · 848 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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
VERSION = "0.4.1"
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="vnet-manager",
version=VERSION,
url="https://github.com/Erik-Lamers1/vnet-manager",
packages=find_packages(),
author="Erik Lamers",
license="MIT",
# PyLXD 2.2.11 is currently broken: https://github.com/lxc/pylxd/issues/404
install_requires=["colorama", "PyYAML", "tabulate", "pylxd==2.2.10", "pyroute2", "psutil", "distro"],
entry_points={"console_scripts": ["vnet-manager = vnet_manager.vnet_manager:main",],},
classifiers=["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",],
python_requires=">=3.6",
)