forked from KoushikNavuluri/Claude-API
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1.21 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
from setuptools import setup, find_packages
from pathlib import Path
base_path = Path(__file__).parent
long_description = (base_path / "README.md").read_text()
setup(
name='claude-api',
version='1.0.17',
author='Koushik',
license="MIT",
author_email='koushikk@outlook.com',
description='An unofficial API for Claude AI, allowing users to access and interact with Claude AII',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/KoushikNavuluri/Claude-API/',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
],
package_dir={
"": "claude-api"
},
py_modules=["claude_api"],
keywords=['claude', 'ai', 'claude-ai', 'API', 'requests', 'chatbot'],
install_requires=[
'requests','curl_cffi'
],
python_requires=">=3.7",
)