Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Django LDP
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
20
Issues
20
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
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
Django LDP
Commits
93330638
Commit
93330638
authored
Jan 09, 2019
by
Plup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change: added semantic release configuration
parent
ab441906
Pipeline
#1745
passed with stage
in 24 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
18 deletions
+29
-18
djangoldp/__init__.py
djangoldp/__init__.py
+1
-0
setup.cfg
setup.cfg
+25
-0
setup.py
setup.py
+3
-18
No files found.
djangoldp/__init__.py
View file @
93330638
from
django.db.models
import
options
__version__
=
'0.0.0'
options
.
DEFAULT_NAMES
+=
(
'rdf_type'
,
'auto_author'
)
setup.cfg
0 → 100644
View file @
93330638
[metadata]
name = djangoldp
version = attr: djangoldp.__version__
url = 'https://git.happy-dev.fr/happy-dev/djangoldp/'
author = "Startin'blox"
author_email = 'sylvain@happy-dev.fr'
description = 'Linked Data Platform interface for Django Rest Framework'
license = 'MIT'
[options]
packages =
djangoldp
djangoldp.migrations
setup_requires =
django~=1.11
install_requires =
django~=1.11
django_rest_framework
pyld
django-guardian
[semantic_release]
version_source = tag
version_variable = djangoldp/__init__.py:__version__
commit_parser = commit_parser.parser
setup.py
View file @
93330638
#!/usr/bin/env python
from
setuptools
import
setup
setup
(
name
=
'djangoldp'
,
version
=
'0.5a12'
,
url
=
'https://git.happy-dev.fr/happy-dev/djangoldp/'
,
author
=
"Startin'blox"
,
author_email
=
'sylvain@happy-dev.fr'
,
description
=
'Linked Data Platform interface for Django Rest Framework'
,
packages
=
[
'djangoldp'
,
'djangoldp.migrations'
],
zip_safe
=
False
,
platforms
=
'any'
,
license
=
'MIT'
,
install_requires
=
[
'django~=1.11'
,
'django_rest_framework'
,
'pyld'
,
'django-guardian'
,
],
)
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