forked from Lightning-AI/litgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (20 loc) · 747 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
# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
import os
from setuptools import find_packages, setup
_PATH_ROOT = os.path.dirname(__file__)
with open(os.path.join(_PATH_ROOT, "README.md"), encoding="utf-8") as fo:
readme = fo.read()
setup(
name="lit-gpt",
version="0.1.0",
description="Open source large language model implementation",
author="Lightning AI",
url="https://github.com/lightning-AI/lit-gpt",
install_requires=[
"torch>=2.2.0",
"lightning @ git+https://github.com/Lightning-AI/lightning@ed367ca675861cdf40dbad2e4d66f7eee2ec50af",
],
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
)