Files
instagram-location-search/setup.py
2023-02-13 15:11:57 +00:00

31 lines
1001 B
Python

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",
author_email="tech@bellingcat.com"
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", "instagram-scraper"],
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.instagram_locations:main",
]
},
)