mirror of
https://github.com/RetroZelda/beacon-snatch.git
synced 2026-06-14 04:16:54 +00:00
Initial Submit
This commit is contained in:
30
setup.py
Normal file
30
setup.py
Normal file
@@ -0,0 +1,30 @@
|
||||
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(
|
||||
name="beacon_snatch",
|
||||
version="0.1.0",
|
||||
author="RetroZelda",
|
||||
author_email="retrozelda@gmail.com",
|
||||
description="Snatch from Beacon",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/retrozelda/beacon_snatch",
|
||||
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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user