archive
/
ipc-unix
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
ipc-unix/setup.py

17 lines
473 B
Python

from setuptools import setup
setup(
name="ipc-unix",
version="0.0.0",
url="https://github.com/realorangeone/ipc-unix",
license="MIT",
author="Jake Howard",
description="Inter-Process Communication using unix sockets",
packages=["ipc_unix"],
include_package_data=True,
zip_safe=False,
pathon_requires=">=3.5",
install_requires=["ujson"],
project_urls={"GitHub: Issues": "https://github.com/realorangeone/ipc-unix/issues"},
)