22 lines
543 B
Python
22 lines
543 B
Python
|
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',
|
||
|
]
|
||
|
},
|
||
|
install_requires=[
|
||
|
'aiosqlite',
|
||
|
'fastapi',
|
||
|
'hypercorn',
|
||
|
'ormantic @ https://github.com/MushroomMaula/ormantic/tarball/master#egg=ormantic-0.0.32',
|
||
|
]
|
||
|
)
|