-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (28 loc) · 926 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
28
29
30
31
32
from setuptools import setup, find_packages
def readme():
with open('README.md', 'r', encoding="utf-8") as f:
return f.read()
setup(
name='PyCharacterAI',
version='2.2.1',
author='XtraF',
author_email='igoromarov15@gmail.com',
description='An unofficial asynchronous api wrapper for Character AI.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Xtr4F/PyCharacterAI',
packages=find_packages(),
install_requires=[
'curl-cffi==0.7.1',
'aiohttp'
],
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License'
],
python_requires='>=3.8'
)