forked from ekbanasolutions/numpy-using-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 713 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import setuptools
# from packagename.version import Version
setuptools.setup(name='NpSocket',
version='0.1.0',
description='Send Numpy Arrays over TCP/IP socket',
long_description=open('README.md').read().strip(),
author="Vaghawan Ojha, Bibek Chaudhary",
author_email='vaghawan781@gmail.com',
url='https://github.com/ekbanasolutions/numpy-using-socket',
py_modules=['npsocket.npsocket'],
install_requires=['numpy'],
license='MIT License',
zip_safe=False,
keywords='numpy, python3, socket',
classifiers=[''])