Skip to content

Commit

Permalink
fix: Updating meta and moved attributes to init in package root
Browse files Browse the repository at this point in the history
  • Loading branch information
MSAdministrator committed Feb 13, 2023
1 parent cbfce67 commit df2d93d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 10 deletions.
27 changes: 27 additions & 0 deletions atomic_operator/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
"""Main init for AtomicOperator package."""
from .atomic_operator import AtomicOperator


__title__ = 'atomic-operator'
__description__ = 'A python package to execute Atomic tests'
__url__ = 'https://github.com/swimlane/atomic-operator'
__version__ = '0.8.5'
__author__ = 'Swimlane'
__author_email__ = 'info@swimlane.com'
__maintainer__ = 'MSAdministrator'
__maintainer_email__ = 'rickardja@live.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Swimlane'

__all__ = [
"AtomicOperator",
"__title__",
"__description__",
"__url__",
"__version__",
"__author__",
"__author_email__",
"__maintainer__",
"__maintainer_email__",
"__license__",
"__copyright__",
]
10 changes: 0 additions & 10 deletions atomic_operator/__meta__.py

This file was deleted.

0 comments on commit df2d93d

Please sign in to comment.