mirror of
https://github.com/meerk40t/meerk40t.git
synced 2025-02-27 20:30:12 +00:00
Git Sync
This commit is contained in:
parent
55d341f965
commit
b682ee2dd9
4 changed files with 27 additions and 3 deletions
25
.gitignore
vendored
25
.gitignore
vendored
|
@ -11,6 +11,7 @@ __pycache__/
|
|||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
old_dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
|
@ -20,6 +21,8 @@ parts/
|
|||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
pip-wheel-metadata/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
@ -38,12 +41,14 @@ pip-delete-this-directory.txt
|
|||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
|
||||
|
@ -55,6 +60,7 @@ coverage.xml
|
|||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
|
@ -72,9 +78,20 @@ target/
|
|||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# pipenv
|
||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
|
||||
# celery beat schedule file
|
||||
celerybeat-schedule
|
||||
|
||||
|
@ -102,3 +119,11 @@ venv.bak/
|
|||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# Others
|
||||
*.bat
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2019 meerk40t
|
||||
Copyright (c) 2021 meerk40t
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
|
2
setup.py
2
setup.py
|
@ -7,6 +7,6 @@ setup(
|
|||
'gui': ['wxPython>=4.0.0', "Pillow>=7.0.0"],
|
||||
'cam': ["meerk40t_camera", "opencv-python-headless>=3.4.0.0"],
|
||||
'dxf': ["ezdxf>=13.0.0"],
|
||||
'camhead': ["meerk40t_camera", "opencv-python-headless>=3.4.0.0"],
|
||||
'camhead': ["meerk40t_camera", "opencv-python>=3.4.0.0"],
|
||||
}
|
||||
)
|
Loading…
Reference in a new issue