Skip to content

Commit 54ecdc1

Browse files
committed
hopfully fixed file locality so it can be used as package
1 parent fb48148 commit 54ecdc1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
long_description=LONG_DESCRIPTION,
2020
packages=find_packages(),
2121
install_requires=requirements,
22-
# needs to be installed along with your package.
23-
2422
keywords=['python', 'IceCreamSwapWeb3'],
2523
classifiers=[
2624
"Development Status :: 3 - Alpha",
2725
"Intended Audience :: Education",
2826
"Programming Language :: Python :: 3",
2927
"Operating System :: MacOS :: MacOS X",
3028
"Operating System :: Microsoft :: Windows",
31-
]
29+
],
30+
package_data={
31+
'': ['*.abi', '*.bytecode'], # Include all .abi and .bytecode files from any directory
32+
},
3233
)

0 commit comments

Comments
 (0)