Skip to content

Commit 2c12dd7

Browse files
committed
include profiles folder
1 parent 3ce11cd commit 2c12dd7

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ include *.rst
22
include setup.py
33
include requirements-testing.txt
44
include tox.ini
5-
include .marker
5+
recursive-include pytest_splinter/profiles *

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# create virtual environment
2+
.env:
3+
virtualenv .env
4+
5+
# install all needed for development
6+
develop: .env
7+
.env/bin/pip install -e . -r requirements-testing.txt tox
8+
9+
# clean the development envrironment
10+
clean:
11+
-rm -rf .env

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def run_tests(self):
4848
author_email='[email protected]',
4949
version=pytest_splinter.__version__,
5050
cmdclass={'test': Tox},
51+
include_package_data=True,
5152
url='https://github.com/pytest-dev/pytest-splinter',
5253
install_requires=[
5354
'setuptools',

0 commit comments

Comments
 (0)