diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2dec99a --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +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', + ] + }, + install_requires=[ + 'aiofiles', + 'aiosqlite', + 'argon2_cffi', + 'fastapi', + 'hypercorn', + 'ormantic @ https://github.com/dl6tom/ormantic/tarball/bugfix__get_key_factory#egg=ormantic-0.0.32', + 'passlib', + 'peony-twitter[all]', + 'pynacl', + 'python-multipart', + 'pytoml', + 'scrypt', + ], + test_requires=[ + 'pytest', + ], +)