pubcached/setup.py

22 lines
573 B
Python
Raw Permalink Normal View History

2023-08-20 17:54:52 +00:00
from setuptools import setup, find_packages
setup(
2023-08-20 17:55:43 +00:00
name="pubcached",
version="0.1",
description="Caching server for pub.dev packages",
author='Alexander "PapaTutuWawa"',
author_email="papatutuwawa [at] polynom.me",
2023-08-20 17:54:52 +00:00
install_requires=[
2023-08-20 17:55:43 +00:00
"aiofiles>=23.1.0",
"requests>=2.29.0",
"falcon>=3.1.1",
"loguru>=0.7.0",
"toml>=0.10.2",
"uvicorn>=0.20.0",
2023-08-20 17:54:52 +00:00
],
packages=find_packages(),
2023-08-20 17:55:43 +00:00
license="MIT",
2023-08-20 17:54:52 +00:00
zip_safe=True,
2023-08-20 17:55:43 +00:00
entry_points={"console_scripts": ["pubcached = pubcached.pubcached:main"]},
2023-08-20 17:54:52 +00:00
)