dclient/setup.py

37 lines
1.1 KiB
Python
Raw Permalink Normal View History

2022-11-22 01:57:06 +00:00
from setuptools import setup
import os
2022-11-21 21:38:39 -08:00
VERSION = "0.1a2"
2022-11-22 01:57:06 +00:00
def get_long_description():
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name="dclient",
description="A client CLI utility for Datasette instances",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Simon Willison",
url="https://github.com/simonw/dclient",
project_urls={
"Issues": "https://github.com/simonw/dclient/issues",
"CI": "https://github.com/simonw/dclient/actions",
"Changelog": "https://github.com/simonw/dclient/releases",
},
license="Apache License, Version 2.0",
version=VERSION,
packages=["dclient"],
entry_points={
"datasette": ["client = dclient.plugin"],
"console_scripts": ["dclient = dclient.cli:cli"],
},
2022-11-21 18:53:12 -08:00
install_requires=["click", "httpx", "appdirs"],
extras_require={"test": ["pytest", "pytest-httpx", "cogapp", "pytest-mock"]},
2022-11-22 01:57:06 +00:00
python_requires=">=3.7",
)