Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Dec 17, 2023
1 parent 8fd3fbd commit c9ed1ef
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 24 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
[build-system]
requires = ["setuptools>=42", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"

4 changes: 1 addition & 3 deletions src/rite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
# Import
# =============================================================================

# Import | Futures

# Import | Standard Library

# Import | Libraries
Expand All @@ -41,7 +39,7 @@
"Lars van Vianen",
]
__license__ = "MIT License"
__version__ = "0.0.0"
__version__ = "0.0.1"
__maintainer__ = "Scape Agency"
__email__ = "[email protected]"
__status__ = "Alpha"
3 changes: 1 addition & 2 deletions src/rite/data/date.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


"""
Provides File Utils
Provides Date Utils
...
Expand Down Expand Up @@ -54,4 +54,3 @@ def date_dict():
date_dict['date_us_simple'] = date_default.replace("-","/")
# print(date_dict)
return(date_dict)

18 changes: 0 additions & 18 deletions src/rite/data/image_raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,21 +186,3 @@ def save(self, path):
# image = Image.open(self.image_data)
self.image_data.save(path)


# Methods | test

def test_something(self):
"""Test Method"""
pass


def test():
"""Test Function"""
pass


if __name__ == '__main__':
"""Main"""
import doctest
doctest.testmod()
test()

0 comments on commit c9ed1ef

Please sign in to comment.