소스 검색

Fix entry point for console script

oz123 10 년 전
부모
커밋
14624211a6
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      setup.py

+ 4 - 3
setup.py

@@ -345,7 +345,8 @@ setup(name=pwman.appname,
                    'Intended Audience :: End Users/Desktop',
                    'Intended Audience :: Developers',
                    'Intended Audience :: System Administrators',
-                   'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+                   ('License :: OSI Approved :: GNU General Public License'
+                    ' v3 or later (GPLv3+)'),
                    'Operating System :: OS Independent',
                    'Programming Language :: Python',
                    'Programming Language :: Python :: 2.7',
@@ -360,6 +361,6 @@ setup(name=pwman.appname,
           'build_manpage': BuildManPage
       },
       entry_points={
-      'console_scripts': [ 'pwman-cli = pwman.ui.cli:main' ]
-        }
+          'console_scripts': ['pwman3 = pwman.ui.cli:main']
+          }
       )