Use models namespace
This commit is contained in:
parent
c8b7ea2e97
commit
f4e703abee
@ -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.
|
||||||
|
16
setup.py
16
setup.py
@ -1,21 +1,21 @@
|
|||||||
"""
|
"""
|
||||||
_____ _ _______ _
|
_____ _ _______ _
|
||||||
| __ \ | | |__ __| | |
|
| __ \ | | |__ __| | |
|
||||||
| |__) | __ ___ | |_ ___ | | ___ _ __ ___| |__
|
| |__) | __ ___ | |_ ___ | | ___ _ __ ___| |__
|
||||||
| ___/ '__/ _ \| __/ _ \| |/ _ \| '__/ __| '_ \
|
| ___/ '__/ _ \| __/ _ \| |/ _ \| '__/ __| '_ \
|
||||||
| | | | | (_) | || (_) | | (_) | | | (__| | | |
|
| | | | | (_) | || (_) | | (_) | | | (__| | | |
|
||||||
|_| |_| \___/ \__\___/|_|\___/|_| \___|_| |_|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",
|
||||||
|
Loading…
Reference in New Issue
Block a user