-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 601 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 601 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="safeexecute",
version="0.0.27",
description="Safe way to execute Python code with containerization.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh XT",
author_email="josh@devxt.com",
packages=find_packages(),
python_requires=">=3.10",
install_requires=["docker>=7.1.0"],
)