mirror of
https://github.com/grassrootseconomics/custodial-registration-proxy.git
synced 2024-11-23 09:36:46 +01:00
22 lines
383 B
Python
22 lines
383 B
Python
|
from setuptools import setup
|
||
|
|
||
|
requirements = []
|
||
|
f = open('requirements.txt', 'r')
|
||
|
while True:
|
||
|
l = f.readline()
|
||
|
if l == '':
|
||
|
break
|
||
|
requirements.append(l.rstrip())
|
||
|
f.close()
|
||
|
|
||
|
setup(
|
||
|
package_data={
|
||
|
'': [
|
||
|
'data/*.abi.json',
|
||
|
'data/*.bin',
|
||
|
],
|
||
|
},
|
||
|
include_package_data=True,
|
||
|
install_requires=requirements,
|
||
|
)
|