17 lines
270 B
Python
17 lines
270 B
Python
|
from setuptools import setup
|
||
|
import configparser
|
||
|
import os
|
||
|
|
||
|
requirements = []
|
||
|
f = open('requirements.txt', 'r')
|
||
|
while True:
|
||
|
l = f.readline()
|
||
|
if l == '':
|
||
|
break
|
||
|
requirements.append(l.rstrip())
|
||
|
f.close()
|
||
|
|
||
|
setup(
|
||
|
install_requires=requirements,
|
||
|
)
|