diff --git a/README.md b/README.md index ef3e0ab..4a4e803 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,9 @@ Quail is currently in development stage, everything is subject to change https://www.python.org/downloads/release/python-360/ 2. Install Tkinter (if its not already in python3) on debian/ubuntu: ```sudo apt-get install python3-tk``` on fedora ```sudo dnf install python3-tk``` -3. Install PyInstaller -```python3 -m pip install PyInstaller``` +3. Install Quail +```python3 -m pip install iquail``` -4. Run ```python3 setup.py install``` OR set PYTHONPATH to quail directory ## Using Quail Currently everything is subject to change, this is the main reason why there is no documentation yet, diff --git a/setup.py b/setup.py index 57fdb4f..1f40e00 100755 --- a/setup.py +++ b/setup.py @@ -9,16 +9,16 @@ packages.remove("tests") setup( - name='Quail-Installer', + name='iquail', packages=packages, - version='1.2', + version='1.3', description='Quail cross-platform installer', author='Quail team', long_description=long_description, long_description_content_type="text/markdown", author_email='quail_2020@labeip.epitech.eu', url='https://github.com/QuailTeam/Quail', - keywords=['tool', 'deploy', 'installer', 'wizard', 'install', 'update'], + keywords=['tool', 'deploy', 'installer', 'wizard', 'install', 'update', 'quail'], classifiers=['Intended Audience :: Developers', 'Development Status :: 3 - Alpha', 'Programming Language :: Python :: 3 :: Only',