Metadata-Version: 1.1
Name: regcomsrv
Version: 1.0.3
Summary: Package regcomsrv helps you to register or unregister COM-servers that defined in python packages
Home-page: https://github.com/vowatchka/regcomsrv
Author: Vladimir Saltykov
Author-email: vowatchka@mail.ru
License: MIT
Description: Regcomsrv documentation
        -------------------------
        See at https://regcomsrv.readthedocs.io
        
        Overwiew
        --------
        Package helps you to register or unregister COM-servers that defined in python packages.
        
        Register from Python
        --------------------
        ::
        
        	from regcomsrv import reg
        	import sys
        	
        	# set command line attributes
        	sys.argv.clear()
        	sys.argv.append(__file__)
        	sys.argv.append("win32com.servers.dictionary")
        	sys.argv.append("DictionaryPolicy")
        	
        	reg()
        
        Unregister from Python
        ----------------------
        ::
        
        	from regcomsrv import reg
        	import sys
        	
        	# set command line attributes
        	sys.argv.clear()
        	sys.argv.append(__file__)
        	sys.argv.append("win32com.servers.dictionary")
        	sys.argv.append("DictionaryPolicy")
        	sys.argv.append("--unregister")
        	
        	reg()
        
        Register from command line
        --------------------------
        ::
        
        	python -m regcomsrv win32com.servers.dictionary DictionaryPolicy
        	
        Unregister from command line
        ----------------------------
        ::
        	
        	python -m regcomsrv -u win32com.servers.dictionary DictionaryPolicy
        
        Show help
        ---------
        ::
        
        	python -m regcomsrv -h
Keywords: regcomsrv registration unregistration register unregister com server
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
