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
Raw Permalink Normal View History

2018-12-07 13:54:46 +00:00
from setuptools import setup
setup(
name="ipc-unix",
version="0.0.0",
url="https://github.com/realorangeone/ipc-unix",
2018-12-07 21:10:52 +00:00
license="MIT",
2018-12-07 13:54:46 +00:00
author="Jake Howard",
description="Inter-Process Communication using unix sockets",
2018-12-07 21:10:52 +00:00
packages=["ipc_unix"],
2018-12-07 13:54:46 +00:00
include_package_data=True,
zip_safe=False,
2018-12-08 16:11:56 +00:00
pathon_requires=">=3.5",
2018-12-07 21:10:52 +00:00
install_requires=["ujson"],
project_urls={"GitHub: Issues": "https://github.com/realorangeone/ipc-unix/issues"},
2018-12-07 13:54:46 +00:00
)