Skip to content

Commit

Permalink
Merge c58f939 into d1847fa
Browse files Browse the repository at this point in the history
  • Loading branch information
chrizzFTD committed Nov 2, 2019
2 parents d1847fa + c58f939 commit 2ba7f56
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions docs/source/Overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,17 @@ Overview
.. topic:: Grill Names

This package offers Name objects for digital content creation.

----

Digital content encoded in machine-readable formats can be created, viewed and distributed on digital electronics devices without caring how the data is named.

However, for a creative project with the following stages:

``Idea >> Encode >> Distribution``

Going through each stage requires human input, and for that, ease of data tracking and discoverability is a requirement.

Every contribution to the creative project should be uniquely identified. This is done via the :ref:`CGAsset` name in ``the grill``.

Contributions are reworked and iterated over, versions of said contributions should therefore be a first class citizen. This is solved at the filesystem level via the :ref:`CGAssetFile` name.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
# 'sphinx.ext.githubpages',
'sphinx.ext.graphviz',
'sphinx.ext.inheritance_diagram',
'sphinx.ext.autosectionlabel',
'sphinx_autodoc_typehints']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
1 change: 0 additions & 1 deletion grill/__init__.py

This file was deleted.

2 changes: 1 addition & 1 deletion grill/names/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _defaults(self):
result.update(version=1, suffix='ext')
return result

def get_path_pattern_list(self):
def get_path_pattern_list(self) -> typing.List[str]:
pattern = super().get_pattern_list()
pattern.append('version')
return pattern
Expand Down
Empty file removed grill/tokens/ids/tests/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup, find_namespace_packages

_VERSION = '1.5.1'
_VERSION = '1.5.2'
setup(
name='grill-names',
version=_VERSION,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2ba7f56

Please sign in to comment.