-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.32 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.32 KB
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
48
49
#!/usr/bin/env python3
from os import environ
from setuptools import setup
ext_modules = []
if "MYPYC_BUILD" in environ:
print("mypyc build time ...")
from mypyc.build import mypycify
ext_modules = mypycify(
[
"ansible_shed/__init__.py",
"ansible_shed/main.py",
"ansible_shed/shed.py",
],
opt_level="3",
verbose=True,
)
setup(
name="ansible_shed",
version="2026.2.13",
description=(
"asyncio ansible tower like shed to run playbooks and have prometheus "
+ "collector stats"
),
packages=["ansible_shed", "ansible_shed.tests"],
ext_modules=ext_modules,
url="http://github.com/cooperlees/ansible_shed/",
author="Cooper Lees",
author_email="me@cooperlees.com",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
],
entry_points={"console_scripts": ["ansible-shed = ansible_shed.main:main"]},
install_requires=["aioprometheus[aiohttp]", "click>=8.0", "GitPython"],
extras_require={
# If you'd like the ansible toolset dependency installed
"ansible": ["ansible"],
},
tests_require=["ptr"],
python_requires=">=3.13",
test_suite="ansible_shed.tests.base",
)