Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Reading the requirements from the txt file
  • Loading branch information
ManuelRatz committed Aug 14, 2023
1 parent a2bdfee commit f4a2a33
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions spicy_vki/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@
]


# #%%
# import os
# with open('spicy_vki.egg-info' + os.sep + 'requires.txt', 'r') as file:
# # test.extend(file.readlines()[:-2])
# lines = file.readlines()
# lines = [line[:-1] for line in lines]
import os
with open('spicy_vki.egg-info' + os.sep + 'requires.txt', 'r') as file:
# test.extend(file.readlines()[:-2])
lines = file.readlines()
lines = [line[:-1] for line in lines]
file.close()

# #%%

setup(
name=NAME,
Expand Down

0 comments on commit f4a2a33

Please sign in to comment.