Skip to content
Snippets Groups Projects
Verified Commit 57a32c24 authored by me5na7qbjqbrp's avatar me5na7qbjqbrp
Browse files

Add python setuptool conf

parent 435ff784
No related branches found
No related tags found
1 merge request!7Create pip package
Pipeline #2879 passed with warnings with stage
in 40 seconds
......@@ -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
~~~~~~~~~~~~~~~~~~~
......
setup.py 0 → 100644
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=[],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment