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

23 lines
560 B
Python
Raw Normal View History

2018-12-07 13:54:46 +00:00
from setuptools import setup
import unittest
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.4',
install_requires=[
'ujson'
],
project_urls={
'GitHub: Issues': 'https://github.com/realorangeone/ipc-unix/issues'
},
test_suite="nose2.collector.collector"
)