forked from nomic-ai/nomic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (53 loc) · 1.22 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
'''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.0.7',
url='https://github.com/nomic-ai/nomic',
description=description,
long_description=description,
packages=find_packages(),
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={
'dev': [
'black',
'coverage',
"pylint",
"pytest",
"myst-parser",
"mkdocs-material",
"mkautodoc",
"twine",
"mkdocstrings[python]",
"mkdocs-jupyter",
"pillow",
"cairosvg"
]
},
entry_points={
'console_scripts': ['nomic=nomic.cli:cli'],
},
include_package_data=True
)