32 lines
580 B
Python
32 lines
580 B
Python
|
from setuptools import setup
|
||
|
import os
|
||
|
|
||
|
|
||
|
requirements = []
|
||
|
f = open('requirements.txt', 'r')
|
||
|
while True:
|
||
|
l = f.readline()
|
||
|
if l == '':
|
||
|
break
|
||
|
requirements.append(l.rstrip())
|
||
|
f.close()
|
||
|
|
||
|
#test_requirements = []
|
||
|
#f = open('test_requirements.txt', 'r')
|
||
|
#while True:
|
||
|
# l = f.readline()
|
||
|
# if l == '':
|
||
|
# break
|
||
|
# eth_requirements.append(l.rstrip())
|
||
|
#f.close()
|
||
|
|
||
|
|
||
|
setup(
|
||
|
install_requires=requirements,
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'clicada=clicada.runnable.view:main',
|
||
|
],
|
||
|
},
|
||
|
)
|