mirror of
git://holbrook.no/eth-accounts-index
synced 2024-11-24 18:06:45 +01:00
Add package data
This commit is contained in:
parent
3264007c57
commit
c0f845df32
@ -21,8 +21,13 @@ licence_files =
|
|||||||
LICENSE.txt
|
LICENSE.txt
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
|
include_package_data = True
|
||||||
python_requires = >= 3.6
|
python_requires = >= 3.6
|
||||||
packages =
|
packages =
|
||||||
|
eth_accounts_index
|
||||||
install_requires =
|
install_requires =
|
||||||
confini==0.2.1
|
confini==0.2.7
|
||||||
web3==5.12.2
|
web3==5.12.2
|
||||||
|
|
||||||
|
[options.package_data]
|
||||||
|
* = **/*.abi.json
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
scripts=[
|
package_data={
|
||||||
]
|
'': [
|
||||||
|
'data/*.abi.json',
|
||||||
|
'data/*.bin',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
include_package_data=True,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user