-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Updating meta and moved attributes to init in package root
- Loading branch information
1 parent
cbfce67
commit df2d93d
Showing
2 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__", | ||
] |
This file was deleted.
Oops, something went wrong.