-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
27 lines (25 loc) · 902 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='characterai',
version='1.0.0',
description='An unofficial API for Character AI for Python',
keywords='ai wrapper api library',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/kramcat/characterai',
author='kramcat',
license='MIT',
install_requires=['pydantic', 'curl_cffi', 'websockets'],
packages=find_packages(include=['characterai*']),
project_urls={
'Community': 'https://discord.gg/ZHJe3tXQkf',
'Source': 'https://github.com/kramcat/characterai',
'Documentation': 'https://docs.kram.cat',
},
classifiers=[
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
],
)