This commit is contained in:
N0\A
2025-10-30 11:28:37 +01:00
commit 7ca4ed94d6
7 changed files with 134 additions and 0 deletions

113
.gitignore vendored Normal file
View File

@@ -0,0 +1,113 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# celery beat
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyderworkspace
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/

1
README.md Normal file
View File

@@ -0,0 +1 @@
# musicdl

2
create_venv.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
python3 -m venv venv

1
musicdl/__init__.py Normal file
View File

@@ -0,0 +1 @@
# musicdl

5
musicdl/__main__.py Normal file
View File

@@ -0,0 +1,5 @@
def main():
print("Hello from musicdl!")
if __name__ == '__main__':
main()

0
requirements.txt Normal file
View File

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='musicdl',
version='0.1.0',
packages=find_packages(),
entry_points={
'console_scripts': [
'musicdl = musicdl.__main__:main',
],
},
)