-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 888 Bytes
/
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
"""Builds the package.
@author: Younggue Bae
"""
import os
import sys
import pkg_resources
from setuptools import setup, find_packages
VERSION = "0.0.4"
DESCRIPTION = "nextGPT"
setup(
name="nextgpt",
version=VERSION,
description=DESCRIPTION,
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Younggue Bae",
# author_email="<[email protected]>",
package_dir={"": "src"},
url="https://github.com/louiezzang/next-gpt",
keywors=[
"GPT",
"ChatGPT",
"LLaMA",
],
packages=find_packages(where="src"),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
python_requires=">=3.6",
include_package_data=True,
)