Use models namespace
This commit is contained in:
parent
c8b7ea2e97
commit
f4e703abee
@ -1,4 +1,4 @@
|
||||
# prototorch_plugintemplate
|
||||
Prototorch plugin template.
|
||||
# prototorch_models
|
||||
|
||||
TODO: Instructions
|
||||
Pre-packaged prototype-based machine learning models using ProtoTorch and
|
||||
PyTorch-Lightning.
|
||||
|
10
setup.py
10
setup.py
@ -6,16 +6,16 @@
|
||||
| | | | | (_) | || (_) | | (_) | | | (__| | | |
|
||||
|_| |_| \___/ \__\___/|_|\___/|_| \___|_| |_|Plugin
|
||||
|
||||
ProtoTorch plugintemplate Plugin Package
|
||||
ProtoTorch models Plugin Package
|
||||
"""
|
||||
from pkg_resources import safe_name
|
||||
from setuptools import setup
|
||||
from setuptools import find_namespace_packages
|
||||
|
||||
PLUGIN_NAME = "plugintemplate"
|
||||
PLUGIN_NAME = "models"
|
||||
|
||||
PROJECT_URL = "https://github.com/si-cim/prototorch_plugintemplate"
|
||||
DOWNLOAD_URL = "https://github.com/si-cim/prototorch_plugintemplate.git"
|
||||
PROJECT_URL = "https://github.com/si-cim/prototorch_models"
|
||||
DOWNLOAD_URL = "https://github.com/si-cim/prototorch_models.git"
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
@ -25,7 +25,7 @@ INSTALL_REQUIRES = ["prototorch"]
|
||||
setup(
|
||||
name=safe_name("prototorch_" + PLUGIN_NAME),
|
||||
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,
|
||||
author="Alexander Engelsberger",
|
||||
author_email="engelsbe@hs-mittweida.de",
|
||||
|
Loading…
Reference in New Issue
Block a user