-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.18 KB
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
#!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = open("requirements.txt").readlines()
setup(
name="jigsawstack",
version="0.4.2",
description="JigsawStack - The AI SDK for Python",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
author="JigsawStack",
author_email="hello@jigsawstack.com",
url="https://github.com/jigsawstack/jigsawstack-python",
packages=find_packages(include=["jigsawstack"]),
install_requires=install_requires,
zip_safe=False,
python_requires=">=3.9",
keywords=["AI", "AI Tooling"],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-asyncio"],
test_suite="tests",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)