Unverified Commit 778abaff authored by Dan Jones's avatar Dan Jones
Browse files

fix: identify location of package

2 merge requests!5Resolve "Release v0.1",!1Resolve "import-features-and-fixtures-from-js-adapter"
Pipeline #102548 failed with stages
in 0 seconds
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
from setuptools import setup, find_packages
from setuptools import setup
setup(
name='backbone-adapter-testsuite',
packages=find_packages(),
packages=['testsuite'],
package_dir: {
'testsuite': '.',
},
package_data={
'': ['features/*.feature', 'fixtures/*.json'],
'testsuite': ['features/*.feature', 'fixtures/*.json'],
},
include_package_data=True,
zip_safe=False
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment