Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Djangoldp Account
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Startin blox
djangoldp-packages
Djangoldp Account
Commits
c33b2092
Commit
c33b2092
authored
Jan 10, 2019
by
Nicolas Mérigot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature: install ci/cd
parent
9b30f94d
Pipeline
#1779
passed with stage
in 29 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
13 deletions
+52
-13
.gitlab-ci.yml
.gitlab-ci.yml
+30
-0
djangoldp_account/__init__.py
djangoldp_account/__init__.py
+1
-0
setup.cfg
setup.cfg
+18
-0
setup.py
setup.py
+3
-13
No files found.
.gitlab-ci.yml
0 → 100644
View file @
c33b2092
---
image
:
python:3.6
stages
:
-
test
-
release
test
:
stage
:
test
script
:
-
echo 'Make your tests here !'
except
:
-
master
tags
:
-
sib
publish
:
stage
:
release
before_script
:
-
git config user.name "${GITLAB_USER_NAME}"
-
git config user.email "${GITLAB_USER_EMAIL}"
-
git remote set-url origin "https://gitlab-ci-token:${GL_TOKEN}@git.happy-dev.fr/${CI_PROJECT_PATH}.git"
-
pip install git+https://github.com/plup/python-semantic-release
-
pip install sib-commit-parser
script
:
-
semantic-release publish
only
:
-
master
tags
:
-
sib
djangoldp_account/__init__.py
View file @
c33b2092
__version__
=
'0.0.0'
name
=
"djangoldp_account"
setup.cfg
0 → 100644
View file @
c33b2092
[metadata]
name = djangoldp_account
version = attr: djangoldp_account.__version__
url = http://git.happy-dev.fr/startinblox/djangoldp_account
author = Startin'blox
author_email = jblemee@happy-dev.fr
description = djangoldp package for account and chat data models
license = MIT
[options]
packages = find:
install_requires =
djangoldp~=0.5
[semantic_release]
version_source = tag
version_variable = djangoldp_account/__init__.py:__version__
commit_parser = commit_parser.parse
setup.py
View file @
c33b2092
import
os
from
setuptools
import
setup
,
find_packages
#!/usr/bin/env python
# allow setup.py to be run from any path
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
from
setuptools
import
setup
setup
(
name
=
'djangoldp_account'
,
version
=
'0.0.6'
,
description
=
'djangoldp package for account and chat data models'
,
url
=
'http://git.happy-dev.fr/startinblox/djangoldp_account'
,
author
=
"Startin'blox"
,
author_email
=
'jblemee@happy-dev.fr'
,
license
=
'MIT'
,
packages
=
find_packages
(),
zip_safe
=
False
)
setup
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment