Files
beacon-snatch/setup.py

31 lines
931 B
Python
Raw Normal View History

2024-08-24 01:24:34 -04:00
from setuptools import setup, find_packages
# Function to read the requirements.txt file
def parse_requirements(filename):
with open(filename, "r") as req_file:
return req_file.read().splitlines()
setup(
2024-08-24 02:34:59 -04:00
name="beacon-snatch",
2025-02-09 23:15:31 -05:00
version="0.1.7",
2024-08-24 01:24:34 -04:00
author="RetroZelda",
author_email="retrozelda@gmail.com",
description="Snatch from Beacon",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
2024-08-24 02:34:59 -04:00
url="https://github.com/retrozelda/beacon-snatch",
2024-08-24 01:24:34 -04:00
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=parse_requirements("dependencies"),
entry_points={
"console_scripts": [
"beacon-snatch=beacon_snatch.cli:main",
],
},
)