Use models namespace

This commit is contained in:
Jensun Ravichandran 2021-04-21 13:30:50 +02:00
parent c8b7ea2e97
commit f4e703abee
3 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# prototorch_plugintemplate # prototorch_models
Prototorch plugin template.
TODO: Instructions Pre-packaged prototype-based machine learning models using ProtoTorch and
PyTorch-Lightning.

View File

@ -6,16 +6,16 @@
| | | | | (_) | || (_) | | (_) | | | (__| | | | | | | | | (_) | || (_) | | (_) | | | (__| | | |
|_| |_| \___/ \__\___/|_|\___/|_| \___|_| |_|Plugin |_| |_| \___/ \__\___/|_|\___/|_| \___|_| |_|Plugin
ProtoTorch plugintemplate Plugin Package ProtoTorch models Plugin Package
""" """
from pkg_resources import safe_name from pkg_resources import safe_name
from setuptools import setup from setuptools import setup
from setuptools import find_namespace_packages from setuptools import find_namespace_packages
PLUGIN_NAME = "plugintemplate" PLUGIN_NAME = "models"
PROJECT_URL = "https://github.com/si-cim/prototorch_plugintemplate" PROJECT_URL = "https://github.com/si-cim/prototorch_models"
DOWNLOAD_URL = "https://github.com/si-cim/prototorch_plugintemplate.git" DOWNLOAD_URL = "https://github.com/si-cim/prototorch_models.git"
with open("README.md", "r") as fh: with open("README.md", "r") as fh:
long_description = fh.read() long_description = fh.read()
@ -25,7 +25,7 @@ INSTALL_REQUIRES = ["prototorch"]
setup( setup(
name=safe_name("prototorch_" + PLUGIN_NAME), name=safe_name("prototorch_" + PLUGIN_NAME),
use_scm_version=True, use_scm_version=True,
descripion="Template for ProtoTorch Plugin.", descripion="Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning.",
long_description=long_description, long_description=long_description,
author="Alexander Engelsberger", author="Alexander Engelsberger",
author_email="engelsbe@hs-mittweida.de", author_email="engelsbe@hs-mittweida.de",