pizzatool/setup.py

24 lines
602 B
Python
Raw Permalink Normal View History

2020-06-18 02:55:56 +00:00
from setuptools import find_packages, setup
setup(
name='pizzatool',
version='0.0.0',
packages=find_packages(),
url='https://git.0x90.space/0x90/pizzatool',
author='0x90.space',
author_email='people@schleuder.0x90.space',
entry_points={
'console_scripts': [
'pizzatool=pizzatool:main',
]
},
python_requires='>=3.7',
2020-06-18 02:55:56 +00:00
install_requires=[
2020-06-20 12:31:45 +00:00
'aiofiles',
2020-06-18 02:55:56 +00:00
'aiosqlite',
'fastapi',
'hypercorn',
2020-06-20 12:31:45 +00:00
'ormantic @ https://github.com/dl6tom/ormantic/tarball/bugfix__get_key_factory#egg=ormantic-0.0.32',
2020-06-18 02:55:56 +00:00
]
)