We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70117e commit 1b51909Copy full SHA for 1b51909
MANIFEST.in
@@ -1,2 +1,13 @@
1
include LICENSE
2
-recursive-include tests *.py *.key *.db known_hosts*
+
3
+recursive-include tests *
4
+prune tests/__pycache__
5
+prune tests/.pytest_cache
6
7
+recursive-include webssh *
8
+prune webssh/__pycache__
9
+prune webssh/.pytest_cache
10
11
+global-exclude *.pyc
12
+global-exclude *.log
13
+global-exclude .coverage
setup.py
@@ -21,6 +21,7 @@
21
wssh = webssh.main:main
22
''',
23
license='MIT',
24
+ include_package_data=True,
25
classifiers=[
26
'Programming Language :: Python',
27
'Programming Language :: Python :: 2',
0 commit comments