Skip to content

Commit fd8d478

Browse files
committedDec 26, 2023
docs: docs necessary for pip install
1 parent 9518a8d commit fd8d478

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
 

‎requirements.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
filelock==3.13.1
2+
fsspec==2023.12.2
3+
Jinja2==3.1.2
4+
MarkupSafe==2.1.3
5+
mpmath==1.3.0
6+
networkx==3.2.1
7+
numpy==1.26.2
8+
sympy==1.12
9+
torch==2.1.2
10+
typing_extensions==4.9.0

‎setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='sapirai',
5+
version='0.1.0',
6+
author='Yu Nakai',
7+
author_email='y.nakai928@gmail.com',
8+
description='SDK for sapir.ai',
9+
long_description=open('README.md').read(),
10+
long_description_content_type='text/markdown',
11+
url='https://github.com/sapir-ai/python-sdk',
12+
packages=find_packages(),
13+
install_requires=open('requirements.txt').read().splitlines(),
14+
classifiers=[
15+
'Programming Language :: Python :: 3',
16+
'License :: OSI Approved :: MIT License',
17+
'Operating System :: OS Independent',
18+
],
19+
python_requires='>=3.9',
20+
)

0 commit comments

Comments
 (0)