Added setup py; buiuld system; and IPC and process detection

This commit is contained in:
2021-11-25 00:44:12 -06:00
parent dc894f1245
commit 35cf150fbc
11 changed files with 133 additions and 37 deletions

View File

@@ -0,0 +1,11 @@
from setuptools import setup
setup(
name='pyfm',
version='0.0.1',
packages=['pyfm'],
install_requires=[
'setproctitle',
'PyGobject',
],
)