Clean up for release

This commit is contained in:
Colin Basnett
2021-02-06 00:25:00 -08:00
parent 0bb81b35e6
commit 1feea05092
2 changed files with 3 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
bl_info = {
'name': 'ASCII Scene Export',
'description': 'Export ASE (ASCII Scene Export) files',
'author': 'Colin Basnett (Darklight Games',
'author': 'Colin Basnett (Darklight Games)',
'version': (1, 0, 0),
'blender': (2, 90, 0),
'location': 'File > Import-Export',
'warning': 'This add-on is under development.',
'wiki_url': 'https://github.com/cmbasnett/io_scene_ase/wiki',
'tracker_url': 'https://github.com/cmbasnett/io_scene_ase/issues',
'wiki_url': 'https://github.com/DarklightGames/io_scene_ase/wiki',
'tracker_url': 'https://github.com/DarklightGames/io_scene_ase/issues',
'support': 'COMMUNITY',
'category': 'Import-Export'
}
@@ -28,10 +28,6 @@ from . import builder
from . import writer
from . import exporter
icons = [
# 'lambda',
]
classes = (
exporter.ASE_OT_ExportOperator,
)