Fixed numerous errors with build

This commit is contained in:
Jamie Hardt
2023-06-02 19:23:07 -07:00
parent b65401d25f
commit 408829e820
3 changed files with 12 additions and 7 deletions

View File

@@ -3,6 +3,6 @@ Parse and convert Pro Tools text exports
"""
__version__ = '1.0.6'
# __author__ = 'Jamie Hardt'
# __license__ = 'MIT'
# __copyright__ = "%s %s (c) 2022 %s. All rights reserved." % (__name__, __version__, __author__)
__author__ = 'Jamie Hardt'
__license__ = 'MIT'
__copyright__ = "%s %s (c) 2022 %s. All rights reserved." % (__name__, __version__, __author__)

View File

@@ -2,7 +2,7 @@ from optparse import OptionParser, OptionGroup
import datetime
import sys
from ptulsconv import __name__, __version__, __author__,__copyright__
from ptulsconv import __name__, __version__, __author__, __copyright__
from ptulsconv.commands import convert
from ptulsconv.reporting import print_status_style, print_banner_style, print_section_header_style, print_fatal_error

View File

@@ -33,9 +33,14 @@ doc = [
"sphinx-rtd-theme >= 1.1.1"
]
[project.scripts]
flit = "ptulsconv.__main__:main"
[tool.flit.module]
name = "ptulsconv"
[project.scripts]
ptulsconv = "ptulsconv.__main__:main"
[project.entry_points.console_scripts]
ptulsconv = 'ptulsconv.__main__:main'
[project.urls]
Source = 'https://github.com/iluvcapra/ptulsconv'