File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments