Skip to content
Snippets Groups Projects
Commit 05935309 authored by Matthieu Fesselier's avatar Matthieu Fesselier
Browse files

Merge branch 'feature/cicd' into 'master'

Feature: install CI/CD pipeline

See merge request startinblox/djangoldp-packages/djangoldp-notifications!1
parents d24b1760 b33249d2
No related branches found
No related tags found
No related merge requests found
---
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
__version__ = '0.0.0'
name = "djangoldp_notification"
File moved
from django.apps import AppConfig
class DjangoldpNotificationConfig(AppConfig):
name = 'djangoldp_notification'
File moved
name = "djangoldp_notifications"
\ No newline at end of file
from django.apps import AppConfig
class DjangoldpNotificationsConfig(AppConfig):
name = 'djangoldp_notifications'
[metadata]
name = djangoldp_notification
version = attr: djangoldp_notification.__version__
url = https://git.happy-dev.fr/startinblox/djangoldp-packages/djangoldp-notifications
author = Startin'blox
author_email = matthieu@happy-dev.fr
description = djangoldp package for notifications data models
license = MIT
[options]
packages = find:
install_requires =
djangoldp~=0.5
[semantic_release]
version_source = tag
version_variable = djangoldp_profile/__init__.py:__version__
commit_parser = commit_parser.parse
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_notifications',
version='0.0.1',
description='djangoldp package for notifications data models',
url='https://git.happy-dev.fr/startinblox/djangoldp-packages/djangoldp-notifications',
author="Startin'blox",
author_email='matthieu@happy-dev.fr',
license='MIT',
packages=find_packages(),
zip_safe=False)
setup()
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