-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.33 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.33 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
#!/usr/bin/env python
"""
This module contains setup instructions for llmc.
Based on pytube setup.py
"""
import codecs
import os
from setuptools import setup
with codecs.open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
setup(
name="llmc",
version="0.1.2",
author="Kaiser Pister",
author_email="kaiser@pister.dev",
packages=["llmc"],
package_data={"": ["LICENSE"],},
url="https://github.com/kpister/llmc",
license="MIT",
entry_points={
"console_scripts": [
"llmc = llmc:main"],},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Terminals",
"Topic :: Utilities",
],
description=("A compiler for natural language."),
include_package_data=True,
long_description_content_type="text/markdown",
long_description=long_description,
zip_safe=True,
python_requires=">=3.9",
keywords=["compiler", "gpt-4", "llm"],
)