Skip to content

Commit 7f2dbdf

Browse files
committed
Tweaked
1 parent 16853dc commit 7f2dbdf

6 files changed

Lines changed: 22 additions & 33 deletions

File tree

.gitignore

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
__pycache__/
12
*.py[cod]
2-
*.o
3-
*.a
4-
*.so
5-
BME680_driver/main
3+
dist/
4+
sdist/
5+
env/
6+
build/
7+
develop-eggs/
8+
eggs/
9+
*.egg-info/
10+
.installed.cfg
11+
*.egg
12+
*.deb
13+
*.dsc
14+
*.build
15+
*.changes
16+
*.orig.*
17+
packaging/*tar.xz
18+
library/debian/
19+
pip-log.txt
20+
pip-delete-this-directory.txt
21+
.DS_Store

library/bme680.egg-info/PKG-INFO

Lines changed: 0 additions & 20 deletions
This file was deleted.

library/bme680.egg-info/SOURCES.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

library/bme680.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

library/bme680.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

library/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
keywords = 'Raspberry Pi',
4949
url = 'http://www.pimoroni.com',
5050
classifiers = classifiers,
51-
py_modules = ['bme680'],
51+
packages = ['bme680'],
52+
py_modules = [],
5253
install_requires= []
5354
)

0 commit comments

Comments
 (0)