mirror of
https://github.com/simonw/dclient.git
synced 2026-08-03 16:04:13 +02:00
Initial library structure
This commit is contained in:
parent
ac7aaab22d
commit
56c4672f37
9 changed files with 311 additions and 85 deletions
39
setup.py
Normal file
39
setup.py
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
from setuptools import setup
|
||||
import os
|
||||
|
||||
VERSION = "0.1"
|
||||
|
||||
|
||||
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="""
|
||||
[console_scripts]
|
||||
dclient=dclient.cli:cli
|
||||
""",
|
||||
install_requires=["click"],
|
||||
extras_require={
|
||||
"test": ["pytest"]
|
||||
},
|
||||
python_requires=">=3.7",
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue