Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cli
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
funkwhale
cli
Commits
4faf79b2
Commit
4faf79b2
authored
3 years ago
by
EorlBruder
Browse files
Options
Downloads
Patches
Plain Diff
Added publish-pipeline
Fixes
#20
parent
309aa8bb
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!18
Added publish-pipeline
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+35
-0
35 additions, 0 deletions
.gitlab-ci.yml
README.md
+7
-1
7 additions, 1 deletion
README.md
setup.cfg
+20
-2
20 additions, 2 deletions
setup.cfg
with
62 additions
and
3 deletions
.gitlab-ci.yml
+
35
−
0
View file @
4faf79b2
stages
:
stages
:
-
test
-
test
-
build
-
build
-
publish
variables
:
variables
:
PIP_CACHE_DIR
:
"
$CI_PROJECT_DIR/.cache/pip"
PIP_CACHE_DIR
:
"
$CI_PROJECT_DIR/.cache/pip"
...
@@ -61,3 +62,37 @@ build-windows:
...
@@ -61,3 +62,37 @@ build-windows:
tags
:
tags
:
-
docker-build
-
docker-build
build-pypi
:
stage
:
build
image
:
python:3
before_script
:
-
apt-get update
-
pip install .[build-pypi]
script
:
-
python3 setup.py sdist bdist_wheel
tags
:
-
docker
artifacts
:
paths
:
-
dist/*
expire_in
:
1 week
only
:
-
tags@funkwhale/cli
publish
:
stage
:
publish
image
:
python:3
before_script
:
-
apt-get update
-
pip install .[publish]
script
:
-
twine upload dist/*
tags
:
-
docker
dependencies
:
-
build-linux
-
build-windows
only
:
-
tags@funkwhale/cli
This diff is collapsed.
Click to expand it.
README.md
+
7
−
1
View file @
4faf79b2
...
@@ -2,7 +2,13 @@ A command line interface to interact with Funkwhale servers.
...
@@ -2,7 +2,13 @@ A command line interface to interact with Funkwhale servers.
# Installation
# Installation
We provide some prebuilt binaries for Windows and Linux.
This package can be installed via pip:
```
pip install funkwhale-cli
```
We also provide some prebuilt binaries for Windows and Linux.
On Linux:
On Linux:
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
20
−
2
View file @
4faf79b2
[metadata]
[metadata]
name
=
funkwhale-cli
name
=
funkwhale-cli
description
=
"A command line interface to interact with Funkwhale servers"
description
=
"A command line interface to interact with Funkwhale servers"
version
=
0.1.dev0
version
=
0.1.
2.
dev0
author
=
The Funkwhale Collective
author
=
The Funkwhale Collective
author_email
=
contact@funkwhale.audio
author_email
=
contact@funkwhale.audio
url
=
https://dev.funkwhale.audio/funkwhale/cli
url
=
https://dev.funkwhale.audio/funkwhale/cli
long_description
=
file: README.md
long_description
=
file: README.md
long_description_content_type
=
text/markdown
license
=
AGPL3
license
=
AGPL3
keywords
=
cli
keywords
=
cli
classifiers
=
classifiers
=
Development
Status
::
3
-
Alpha
Development
Status
::
3
-
Alpha
License
::
OSI
Approved
::
AGPL
Intended
Audience
::
End
Users/Desktop
License
::
OSI
Approved
::
GNU
Affero
General
Public
License
v3
or
later
(AGPLv3+)
Natural
Language
::
English
Natural
Language
::
English
Operating
System
::
MacOS
::
MacOS
X
Operating
System
::
POSIX
Operating
System
::
POSIX
::
BSD
Operating
System
::
POSIX
::
Linux
Operating
System
::
Microsoft
::
Windows
Programming
Language
::
Python
Programming
Language
::
Python
::
3
Programming
Language
::
Python
::
3
Programming
Language
::
Python
::
3
::
Only
Programming
Language
::
Python
::
3.6
Programming
Language
::
Python
::
3.6
Programming
Language
::
Python
::
3.7
Programming
Language
::
Python
::
3.8
Programming
Language
::
Python
::
3.9
[options]
[options]
zip_safe
=
True
zip_safe
=
True
include_package_data
=
True
include_package_data
=
True
packages
=
find:
packages
=
find:
python_requires
=
>=3.6
install_requires
=
install_requires
=
aiofiles~=0.7.0
aiofiles~=0.7.0
aiohttp~=3.7.4
aiohttp~=3.7.4
...
@@ -51,7 +64,12 @@ test =
...
@@ -51,7 +64,12 @@ test =
build
=
build
=
pyinstaller~=4.3
pyinstaller~=4.3
build-pypi
=
setuptools~=56.0.0
wheel~=0.36.2
publish
=
twine~=3.4.1
[options.packages.find]
[options.packages.find]
exclude
=
exclude
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment