forked from MELLIFERA-Labs/crun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 740 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 740 Bytes
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
from setuptools import setup, find_packages
setup(
name='crun',
version='0.1',
packages=find_packages(),
install_requires=[
'ansible==6.7.0',
'ansible-core==2.13.13',
'ansible-runner==2.3.6',
'cffi==1.16.0',
'cryptography==42.0.7',
'docutils==0.20.1',
'importlib-metadata==6.2.1',
'Jinja2==3.1.4',
'lockfile==0.12.2',
'MarkupSafe==2.1.5',
'packaging==24.0',
'pexpect==4.9.0',
'ptyprocess==0.7.0',
'pycparser==2.22',
'python-daemon==3.0.1',
'PyYAML==6.0.1',
'resolvelib==0.8.1',
'six==1.16.0',
'zipp==3.18.1',
'click==8.1.7',
'Pygments==2.18.0'
],
)