3 Commits

Author SHA1 Message Date
msramalho
9f02a008f8 Bump version to v1.2.0 for release 2023-03-12 13:31:29 +00:00
msramalho
a58827dd29 fixes #11 bad path naming 2023-03-12 13:31:15 +00:00
msramalho
1216f70cfe readme cleanup 2023-02-13 16:17:09 +00:00
3 changed files with 4 additions and 5 deletions

View File

@@ -2,8 +2,7 @@
[![PyPI version](https://badge.fury.io/py/instagram-location-search.svg)](https://badge.fury.io/py/instagram-location-search)
## Installation
This Python application can be installed from PyPI using pip, and can also be built into a Docker image
### Install with Pip
This Python application can be installed from [PyPI](https://pypi.org/project/instagram-location-search/) using pip:
`pip install instagram-location-search`
or the latest from the repo:

View File

@@ -1,9 +1,9 @@
_MAJOR = "1"
_MINOR = "1"
_MINOR = "2"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "1"
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""

View File

@@ -25,7 +25,7 @@ setuptools.setup(
],
entry_points={
"console_scripts": [
"instagram_locations=instagram_locations.instagram_locations:main",
"instagram-location-search=instagram_locations.instagram_locations:main",
]
},
)