Metadata-Version: 1.1
Name: caniuse
Version: 0.1.0
Summary: check whether a package name has been used on PyPI.
Home-page: http://github.com/lord63/caniuse
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Description: caniuse
        =======
        
        |Latest Version| |Build Status|
        
            Can I use this name for my python package on PyPI?
        
        check whether a package name has been used on PyPI.
        
        Install
        -------
        
        ::
        
            $ pip install caniuse
        
        Usage
        -----
        
        API
        ~~~
        
        ::
        
            >>> from caniuse.main import check
            >>> check('requests')
            u'Sorry, this package name has been registered :(\nHave a look at it: http://pypi.python.org/pypi/requests'
            >>>
            >>> check('you_will_never_use_this_name')
            u'Congratulations! You can use it :)'
        
        CLI
        ~~~
        
        ::
        
            $ caniuse requests
            Sorry, this package name has been registered :(
            Have a look at it: http://pypi.python.org/pypi/requests
        
            $ caniuse you_will_never_use_this_name
            Congratulations! You can use it :)
        
        Tests
        -----
        
        ::
        
            $ pip install -r dev-requirements.txt
            $ py.test -v --pep8 caniuse/test/
        
        License
        ~~~~~~~
        
        MIT.
        
        .. |Latest Version| image:: http://img.shields.io/pypi/v/caniuse.svg
           :target: https://pypi.python.org/pypi/caniuse
        .. |Build Status| image:: https://travis-ci.org/lord63/caniuse.svg
           :target: https://travis-ci.org/lord63/caniuse
        
Keywords: PyPI package name used registered
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
