Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Crans Passwords
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Nounous
Crans Passwords
Commits
57a32c24
Verified
Commit
57a32c24
authored
4 years ago
by
me5na7qbjqbrp
Browse files
Options
Downloads
Patches
Plain Diff
Add python setuptool conf
parent
435ff784
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Create pip package
Pipeline
#2879
passed with warnings with stage
in 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.rst
+15
-0
15 additions, 0 deletions
README.rst
setup.py
+24
-0
24 additions, 0 deletions
setup.py
with
39 additions
and
0 deletions
README.rst
+
15
−
0
View file @
57a32c24
...
...
@@ -40,6 +40,21 @@ Server installation
How to
------
Develop
~~~~~~~
With a Python virtualenv,
.. code:: bash
python3 -m venv venv
. venv/bin/activate
pip install -e .
Then you will be able to launch the project with
``python -m cpasswords``.
Change command name
~~~~~~~~~~~~~~~~~~~
...
...
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
24
−
0
View file @
57a32c24
import
re
import
sys
from
setuptools
import
find_packages
,
setup
setup
(
name
=
"
cpasswords
"
,
version
=
"
0.2.0
"
,
description
=
"
Group password manager based on GPG
"
,
long_description
=
open
(
'
README.rst
'
).
read
(),
maintainer
=
"
CRANS <roots@crans.org>
"
,
license
=
'
GPLv3
'
,
keywords
=
[
'
crans
'
,
'
passwords
'
,
'
gpg
'
,
'
ssh
'
,
'
group
'
],
url
=
"
https://gitlab.crans.org/nounous/cranspasswords
"
,
classifiers
=
[
"
Programming Language :: Python :: 3
"
,
],
packages
=
[
'
cpasswords
'
],
include_package_data
=
True
,
install_requires
=
[
'
paramiko>=2.2
'
,
],
tests_require
=
[],
)
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