-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.51 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
48
49
50
51
52
from setuptools import setup, find_packages
version = "0.0.2"
with open("README.md") as f:
long_description = f.read()
setup(
name="pyllm-code",
version=version,
author="Hisham Alyahya",
author_email="[email protected]",
license="MIT",
description="Leverage LLMs to generate and execute robust code dynamically through an intuitive and easy-to-use API!",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"LLM",
"LLMs",
"assistant",
"helper",
"coding",
"automation",
"AI",
"NLP",
],
download_url=f"https://github.com/HishamYahya/PyLLM/archive/refs/tags/v{version}.tar.gz",
packages=find_packages(),
url="https://github.com/HishamYahya/PyLLM",
install_requires=[
"filelock",
"Jinja2",
"Requests",
"appdirs",
"pytest",
"datasets",
"tabulate",
"timeout-decorator",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"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",
],
)