-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
35 lines (32 loc) · 841 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
from setuptools import find_packages, setup
install_requires = ["typer[all]", "pydantic", "dynaconf"]
extras_require = {
"dev": [
"pip-tools",
"ruff",
"isort",
"mypy",
"pytest",
"pytest-cov",
],
"build": ["pyinstaller", "pyinstaller-hooks-contrib"],
}
setup(
name="container-vm",
url="https://github.com/wy-z/container-vm",
license="MIT",
author="weiyang",
author_email="weiyang.ones@gmail.com",
description="Run VM in container",
packages=find_packages(),
use_scm_version={
"write_to": "version.txt",
},
setup_requires=["setuptools_scm"],
install_requires=install_requires,
extras_require=extras_require,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)