We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b7a77 commit 7ba8cd4Copy full SHA for 7ba8cd4
.gitignore
@@ -1,9 +1,12 @@
1
+**/.DS_Store
2
+**/.vscode
3
+.idea/
4
+
5
# Byte-compiled / optimized / DLL files
6
__pycache__/
7
*.py[cod]
8
*$py.class
9
-.idea/
10
11
# C extensions
12
*.so
Makefile
@@ -0,0 +1,9 @@
+clean:
+ rm -rf build dist pysampling.egg-info
+dist:
+ python setup.py sdist bdist_wheel
+install:
+ pip install .
setup.py
@@ -60,4 +60,4 @@ def packages():
60
# SETUP
61
# ---------------------------------------------------------------------------------------------------------
62
63
-setup(data)
+setup(**data)
0 commit comments