mirror of
https://github.com/tcsenpai/pensieve.git
synced 2025-06-06 19:25:24 +00:00
36 lines
813 B
Python
36 lines
813 B
Python
from setuptools import setup, find_packages
|
|
import pathlib
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
long_description = (here / 'README.md').read_text(encoding='utf-8')
|
|
|
|
setup(
|
|
name='memos',
|
|
version='0.2.0',
|
|
packages=find_packages(),
|
|
package_data={
|
|
'': ['static/**/*'],
|
|
},
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
author="arkohut",
|
|
url="https://github.com/arkohut/memos",
|
|
install_requires=[
|
|
'fastapi',
|
|
'uvicorn',
|
|
'httpx',
|
|
'pydantic',
|
|
'sqlalchemy',
|
|
'typer',
|
|
'magika',
|
|
'pydantic-settings',
|
|
'typesense',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'memos=memos.commands:app',
|
|
],
|
|
},
|
|
python_requires='>=3.10',
|
|
)
|