Metadata-Version: 2.1
Name: novusspace
Version: 0.4.2
Summary: Module for novus space software
Home-page: https://novusspace.inovaperf.me
Author: novus-alex
Author-email: alexandre@hachet.com
License: MIT
Download-URL: https://github.com/novus-alex/novus-module/archive/0.1.tar.gz
Description: # Novus Space Python module
        Please download the files and put the novusspace directory in the root of your project, then you can import the module.
        ```python
        import novusspace
        ```
        ## First setup
        Fof the first setup, make sur pip is a command in your os shell and you got the novusspace directory in your project root, then you can run setup.py with this command in the terminal of your root project
        ```
        python novusspace/setupt.py
        ```
        Now you can totally use the novusspace module
        
        ## Module var
        ```python
        from novusspace import var
        
        var.toIntList('Your list here') # Change str list to int list
        var.toStrList('Your list here') # Change int list to str list
        ```
        
        ## Module update
        ```python
        from novusspace import update
        
        update.update('old file', 'new file url', 'new file name', 'path where the new file will be added', logs=(False is the basic set up))
        ```
        
        ## Module infos
        ```python
        from novusspace.credentials import infos
        
        infos.getVersion() # Return version of the module
        infos.getAuthor() # Return author of the module
        infos.getCompany() # Return company of the module
        ```
        
        ## License
        [Novus Space (MIT)](https://novussapce.inovaperf.me/License.html)
        
Keywords: NOVUS,SPACE,PROJECT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
