-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
91 lines (74 loc) · 2.23 KB
/
setup.py
File metadata and controls
91 lines (74 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# setup.py
# from setuptools import setup, find_packages
# setup(
# name='mplsandbox',
# version='0.1',
# packages=find_packages(),
# entry_points={
# 'console_scripts': [
# 'mplsandbox=mplsandbox.tool:main',
# ],
# },
# install_requires=[
# 'docker',
# 'flask',
# 'guesslang',
# 'openai',
# 'astpretty',
# 'pyflowchart',
# 'javalang',
# ],
# )
from setuptools import setup, find_packages
import pathlib
try:
with open(pathlib.Path(__file__).parent / "README.md", encoding="utf-8") as f:
long_description = f.read()
except FileNotFoundError:
long_description = "Multi-Programming Language Sandbox for LLMs"
setup(
name="mplsandbox",
version="0.1.0",
author="Jianxiang Zang",
author_email="525967361@qq.com",
description="Multi-Programming Language Sandbox for LLMs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Ablustrund/MPLSandbox",
python_requires=">=3.7",
install_requires=[
'docker',
'flask',
'guesslang',
'openai',
'astpretty',
'pyflowchart',
'javalang',
],
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
entry_points={
'console_scripts': [
'mplsandbox=mplsandbox.tool:main',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Framework :: Matplotlib",
],
extras_require={
"security": ["pyOpenSSL>=23.0"],
}
)