-
Notifications
You must be signed in to change notification settings - Fork 172
/
setup.py
68 lines (65 loc) · 1.55 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"""Setup file for the Atlas Client"""
import os
import sys
from setuptools import setup, find_packages
description = "The official Nomic python client."
setup(
name="nomic",
version="3.3.0",
url="https://github.com/nomic-ai/nomic",
description=description,
long_description=description,
packages=find_packages(include=["nomic", "nomic.*"]),
author_email="support@nomic.ai",
author="nomic.ai",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
install_requires=[
"click",
"jsonlines",
"loguru",
"rich",
"requests",
"numpy",
"pandas",
"pydantic",
"tqdm",
"pyarrow",
"pillow",
"pyjwt",
],
extras_require={
"local": [
"gpt4all>=2.5.0,<3",
],
"aws": ["boto3", "sagemaker"],
"all": [
"nomic[local,aws]",
],
"dev": [
"nomic[all]",
"black==24.3.0",
"coverage",
"pylint",
"pytest",
"isort",
"pyright<=1.1.377",
"myst-parser",
"mkdocs-material",
"mkautodoc",
"twine",
"mkdocstrings[python]",
"mkdocs-jupyter",
"pillow",
"cairosvg",
"pytorch-lightning",
"pandas",
],
},
entry_points={
"console_scripts": ["nomic=nomic.cli:cli"],
},
include_package_data=True,
)