We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb48148 commit 54ecdc1Copy full SHA for 54ecdc1
setup.py
@@ -19,14 +19,15 @@
19
long_description=LONG_DESCRIPTION,
20
packages=find_packages(),
21
install_requires=requirements,
22
- # needs to be installed along with your package.
23
-
24
keywords=['python', 'IceCreamSwapWeb3'],
25
classifiers=[
26
"Development Status :: 3 - Alpha",
27
"Intended Audience :: Education",
28
"Programming Language :: Python :: 3",
29
"Operating System :: MacOS :: MacOS X",
30
"Operating System :: Microsoft :: Windows",
31
- ]
+ ],
+ package_data={
+ '': ['*.abi', '*.bytecode'], # Include all .abi and .bytecode files from any directory
32
+ },
33
)
0 commit comments