[feat] Structure

This commit is contained in:
2020-09-28 15:18:12 -04:00
commit 190b54b426
9 changed files with 267 additions and 0 deletions

View File

View File

@@ -0,0 +1,12 @@
"""Python project specific package.
"""
# Project constants for reference throughout the project.
from pathlib import Path
PACKAGE_NAME = "groupid-artifactid"
PACKAGE_DESCRIPTION = "Some one-liner description of the package purpose."
PACKAGE_VERSION = "1.0.0"
PACKAGE_LONG_DESCRIPTION = open(str(Path(__file__).parent)+"/DESCRIPTION.md").read()
PACKAGE_MAINTAINER_CONTACT = "someone@somewhere.com"

View File

@@ -0,0 +1,6 @@
"""
"""
if __name__ == "__main__":
print("Hello")