2020-07-01 18:36:53 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='kibicara',
|
|
|
|
version='0.1.0',
|
|
|
|
description='distribute messages across different social media',
|
|
|
|
url='https://github.com/acipm/kibicara',
|
|
|
|
license='0BSD',
|
|
|
|
packages=find_packages(),
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'kibicara=kibicara.kibicara:Main',
|
2020-07-15 21:50:24 +00:00
|
|
|
'kibicara_mda=kibicara.platforms.email.mda:Main',
|
2020-07-01 18:36:53 +00:00
|
|
|
]
|
|
|
|
},
|
2020-09-15 10:48:12 +00:00
|
|
|
python_requires='>=3.8',
|
2020-07-01 18:36:53 +00:00
|
|
|
install_requires=[
|
|
|
|
'aiofiles',
|
2020-07-10 21:50:16 +00:00
|
|
|
'aiogram',
|
2020-07-01 18:36:53 +00:00
|
|
|
'aiosqlite',
|
|
|
|
'argon2_cffi',
|
|
|
|
'fastapi',
|
|
|
|
'hypercorn',
|
2020-07-11 10:28:53 +00:00
|
|
|
'ormantic @ https://github.com/dl6tom/ormantic/tarball/master#egg=ormantic-0.0.32',
|
2020-07-01 18:36:53 +00:00
|
|
|
'passlib',
|
|
|
|
'peony-twitter[all]',
|
|
|
|
'pynacl',
|
|
|
|
'python-multipart',
|
|
|
|
'pytoml',
|
2020-07-02 09:24:43 +00:00
|
|
|
'requests',
|
2020-07-01 18:36:53 +00:00
|
|
|
'scrypt',
|
2023-03-18 12:19:12 +00:00
|
|
|
'httpx',
|
2020-07-01 18:36:53 +00:00
|
|
|
],
|
|
|
|
)
|