Refactored for PyPI and added Dockerfile

This commit is contained in:
Richard Mwewa
2023-01-10 21:34:28 +02:00
committed by GitHub
parent 5574d1a10c
commit bc7f07418c
5 changed files with 284 additions and 0 deletions

29
setup.py Normal file
View File

@@ -0,0 +1,29 @@
import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="instagram-location-search",
version="1.0.0",
author="Bellingcat",
packages=["instagram_locations"],
description="Finds Instagram location IDs near a specified latitude and longitude.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.bellingcat.com",
license="MIT License",
install_requires=["requests"],
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3'
],
entry_points={
"console_scripts": [
"instagram_locations=instagram_locations.main:start",
]
},
)