Skip to content

Commit

Permalink
setup py now install reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
strakam committed Sep 20, 2024
1 parent c219051 commit 89b0c4e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from setuptools import setup, find_packages

def load_requirements():
with open('requirements.txt') as f:
return f.read().splitlines()

setup(
name='generals',
version='1.0',
Expand All @@ -15,5 +19,5 @@
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.6',
install_requires=[],
install_requires=load_requirements(),
)

0 comments on commit 89b0c4e

Please sign in to comment.