Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy-Python-Programmer committed Aug 9, 2020
1 parent 7d03088 commit 5ba6154
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

packages = ['p5']

requires = [
'vispy',
'glfw',
'numpy',
'Pillow',
'triangle',
]
requires = []

with open("requirements.txt", "r", encoding="UTF-8") as f:
require = f.read().split("\n")

for i in range(len(require)): requires.append(require[i].split("=")[0])

meta_data = {}

with open(os.path.join(here, 'p5', '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), meta_data)

Expand Down

0 comments on commit 5ba6154

Please sign in to comment.