tango / setup.py
deepanway's picture
Update setup.py
05f3d10
raw
history blame
316 Bytes
import os
lib_folder = os.path.dirname(os.path.realpath(__file__))
requirement_path = "requirements.txt"
install_requires = []
if os.path.isfile(requirement_path):
with open(requirement_path) as f:
install_requires = f.read().splitlines()
setup(name="mypackage", install_requires=install_requires, [...])