Skip to content

Commit b05703e

Browse files
committed
Add specs
1 parent fb2f864 commit b05703e

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

gritlm/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,34 @@
55

66
setup(
77
name='gritlm',
8-
version='0.9',
9-
description='gritlm',
8+
version='0.9.1',
9+
description='GritLM',
1010
long_description=readme,
1111
long_description_content_type="text/markdown",
12+
keywords="text generation, text embeddings, instruction tuning",
13+
license="Apache",
14+
author='Niklas Muennighoff',
1215
author_email='n.muennighoff@gmail.com',
13-
url='https://github.com/ContextualAI/gritlm',
16+
project_urls={
17+
"Huggingface Organization": "https://huggingface.co/gritlm",
18+
"Source Code": "https://github.com/ContextualAI/gritlm",
19+
},
1420
packages=find_packages(),
21+
python_requires=">=3.7.0",
1522
install_requires=[
1623
'accelerate>=0.26.1',
1724
'transformers>=4.37.2',
1825
'datasets>=2.16.1',
1926
'wandb',
2027
'mteb[beir]'
2128
],
29+
classifiers=[
30+
"Development Status :: 4 - Beta",
31+
"Environment :: Console",
32+
"Intended Audience :: Developers",
33+
"Intended Audience :: Information Technology",
34+
"License :: OSI Approved :: Apache Software License",
35+
"Operating System :: OS Independent",
36+
"Programming Language :: Python",
37+
],
2238
)

0 commit comments

Comments
 (0)