Move python_apps/api_clients/ to api_client/
This commit is contained in:
parent
cf36eec5f8
commit
d06c898bcf
12 changed files with 0 additions and 0 deletions
28
api_client/setup.py
Normal file
28
api_client/setup.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
# Change directory since setuptools uses relative paths
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
setup(
|
||||
name="libretime-api-client",
|
||||
version="2.0.0",
|
||||
description="LibreTime API Client",
|
||||
author="LibreTime Contributors",
|
||||
url="https://github.com/libretime/libretime",
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/libretime/libretime/issues",
|
||||
"Documentation": "https://libretime.org",
|
||||
"Source Code": "https://github.com/libretime/libretime",
|
||||
},
|
||||
license="AGPLv3",
|
||||
packages=["api_clients"],
|
||||
python_requires=">=3.6",
|
||||
install_requires=[
|
||||
"configobj",
|
||||
"python-dateutil>=2.7.0",
|
||||
"requests",
|
||||
],
|
||||
zip_safe=False,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue