diff --git a/.gitignore b/.gitignore index 7f7cccc..93cb404 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ __pycache__/ *.so # Distribution / packaging +.venv .Python env/ build/ diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..7a9e19a --- /dev/null +++ b/Pipfile @@ -0,0 +1,11 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] + +[dev-packages] + +[requires] +python_version = "3.6"