mirror of
git://holbrook.no/erc20-demurrage-token
synced 2024-11-05 18:06:46 +01:00
11 lines
200 B
Python
11 lines
200 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
package_data={
|
|
'': [
|
|
'data/MintableFactor.bin',
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
)
|