diff --git a/setup.cfg b/setup.cfg index 0098a0a..09a2d90 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fetchtastic -version = 0.1.0 +version = 0.1.1 author = Jeremiah K author_email = jeremiahk@gmx.com description = Meshtastic Firmware and APK Downloader diff --git a/setup.py b/setup.py deleted file mode 100644 index bcf05d2..0000000 --- a/setup.py +++ /dev/null @@ -1,19 +0,0 @@ -from setuptools import setup, find_packages - -setup( - name='fetchtastic', - version='0.1.0', - packages=find_packages(), - install_requires=[ - 'requests', - 'pick', - 'PyYAML', - 'urllib3', - ], - entry_points={ - 'console_scripts': [ - 'fetchtastic=app.cli:main', - ], - }, - # Include other metadata as needed -)