Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
include open_lm/model_configs/*.json
include open_lm/model_configs/*.json
include requirements.txt
include README.md
include LICENSE
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "open_lm"
dynamic = ["version", "description", "readme", "license", "authors", "classifiers", "dependencies"]

[tool.setuptools]
py-modules = []

[tool.black]
line-length = 120

Expand All @@ -6,4 +17,4 @@ markers = [
"slow: marks tests as slow",
"gpu: marks tests as requiring gpus",
"s3: marks tests as requiring s3 creds",
]
]
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import setuptools
from setuptools import find_packages
from setuptools import setup, find_packages
from os import path

here = path.abspath(path.dirname(__file__))
Expand All @@ -17,7 +16,7 @@ def _read_reqs(relpath):

REQUIREMENTS = _read_reqs("requirements.txt")

setuptools.setup(
setup(
name="open_lm",
version="0.0.34",
author=[
Expand Down