Skip to content

Commit

Permalink
add init.py and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshawkes committed Jan 22, 2024
1 parent d21c190 commit b0fec5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Empty file.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
io.open("polytope/version.py", encoding="utf_8_sig").read(),
).group(1)

with open('requirements.txt') as f:
requirements = f.read().splitlines()

setup(
name="polytope-python",
Expand All @@ -23,4 +25,5 @@
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=requirements
)

0 comments on commit b0fec5f

Please sign in to comment.