1 Commits

Author SHA1 Message Date
msramalho
654a0c44d3 Bump version to v0.1.1 for release 2023-02-13 15:18:35 +00:00
4 changed files with 6 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ on:
release:
types: [published]
push:
branches: [ "main" ]
branches: [ "main", "pypi" ]
tags: [ "v*.*.*" ]
permissions:

View File

@@ -3,10 +3,7 @@
## Installation
This Python application can be installed from PyPI using pip, and can also be built into a Docker image
### Install with Pip
`pip install instagram-location-search`
or the latest from the repo:
`pip install git+https://github.com/bellingcat/instagram-location-search`
`pip3 install git+https://github.com/bellingcat/instagram-location-search`
### Build Docker image
`docker build instagram-location-search .`

View File

@@ -1,9 +1,9 @@
_MAJOR = "1"
_MAJOR = "0"
_MINOR = "1"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
_PATCH = "1"
# 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

@@ -1,12 +1,11 @@
import setuptools
from instagram_locations.version import __version__
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="instagram-location-search",
version=__version__,
version="1.0.0",
author="Bellingcat",
author_email="tech@bellingcat.com",
packages=["instagram_locations"],