This commit is contained in:
tatarize 2021-01-20 05:54:37 -08:00
parent 55d341f965
commit b682ee2dd9
4 changed files with 27 additions and 3 deletions

25
.gitignore vendored
View file

@ -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

View file

@ -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

View file

@ -1 +0,0 @@

View file

@ -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"],
}
)