Skip to content

Commit 9c36902

Browse files
committed
Install the package from the PyPI
1 parent d2b8176 commit 9c36902

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ embedding a Python DLL into the AutoHotkey process.
1313
Ensure that you have installed [Python](https://www.python.org/downloads/) 3.7
1414
and newer, and [AutoHotkey](https://www.autohotkey.com/) 1.1.28 and newer.
1515

16-
Install the package from the URL to the Python user install directory. To do
17-
that, copy and paste the following into a PowerShell window:
16+
Install the package to the Python user install directory. To do that, copy and
17+
paste the following into a PowerShell window:
1818

1919
```powershell
20-
py -m pip install --user git+https://github.com/Perlence/AutoHotkey.py
20+
py -m pip install --user autohotkey.py
2121
```
2222

2323
Write the sample code into the `playground.py` file:

docs/install.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ Installation
44
AutoHotkey.py requires `Python <https://www.python.org/downloads/>`_ 3.7 and
55
newer, `AutoHotkey <https://www.autohotkey.com/>`_ 1.1.28 and newer.
66

7-
Once Python is installed, install the package from the URL to the Python user
8-
install directory. To do that, copy and paste the following into a PowerShell
9-
window:
7+
Once Python is installed, install the package to the Python user install
8+
directory. To do that, copy and paste the following into a PowerShell window:
109

1110
.. code-block:: text
1211
13-
py -m pip install --user git+https://github.com/Perlence/AutoHotkey.py
12+
py -m pip install --user autohotkey.py
1413
1514
AutoHotkey.py is now installed. Check out the :doc:`/quickstart` or go to the
1615
:doc:`Documentation Overview </index>`.

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ project_urls =
88
license = BSD-3-Clause
99
author = Sviatoslav Abakumov
1010
author_email = [email protected]
11-
description = Embed Python into AutoHotkey.
11+
description = Write AutoHotkey scripts in Python
1212
long_description = file: README.md
1313
long_description_content_type = text/markdown
1414
platforms = Windows
1515
classifiers =
16-
Development Status :: 3 - Alpha
16+
Development Status :: 4 - Beta
1717
Environment :: Console
1818
Intended Audience :: Developers
1919
License :: OSI Approved :: BSD License
2020
Operating System :: Microsoft :: Windows
2121
Programming Language :: Python :: 3
2222
Programming Language :: Python :: 3.7
2323
Programming Language :: Python :: 3.8
24+
Programming Language :: Python :: 3.9
2425
Programming Language :: Python :: Implementation :: CPython
2526

2627
[options]

0 commit comments

Comments
 (0)