-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (45 loc) · 1.25 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
with open("README.txt") as f:
readme = f.read() + "\n"
with open("CHANGES.txt") as f:
readme += f.read() + "\n"
with open("HACKING.txt") as f:
readme += f.read()
setup(
name="fc.qemu",
version="1.7.dev0",
author="Christian Kauhaus, Christian Theune",
author_email="mail@flyingcircus.io",
url="http://github.com/flyingcircusio/fc.qemu",
description="Qemu VM management utilities",
long_description=readme,
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.10",
],
zip_safe=False,
license="BSD",
namespace_packages=["fc"],
install_requires=[
"colorama", # ==0.3.3',
"consulate >= 1.1.0",
"psutil", # ==5.4.2',
"PyYaml>=5.3.1",
"requests", # ==2.11.1',
"setuptools",
"structlog>=16.1.0",
],
tests_require=[
"pytest-patterns",
],
entry_points={
"console_scripts": [
"fc-qemu = fc.qemu.main:main",
"supervised-qemu = fc.qemu.hazmat.supervise:main",
],
},
)