Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mwdomino committed Mar 7, 2022
1 parent d7d0855 commit 3bf1237
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pynput
13 changes: 13 additions & 0 deletions src/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup

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

setup(
name='keep-presence',
version='1.0`5',
install_requires=install_requires,
scripts=[
'keep-presence.py',
]
)

0 comments on commit 3bf1237

Please sign in to comment.