-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (27 loc) · 974 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
from distutils.dir_util import copy_tree, remove_tree
copy_tree('Matlab', 'DataSocket/Matlab')
setup(
name="PyDataSocket",
version="0.0.52",
author="Peter Somers",
author_email="[email protected]",
description="A Python module for sending data across TCP sockets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/psomers3/PyDataSocket.git",
packages=['DataSocket'],
package_data={'DataSocket': ['Matlab/TCPReceiveSocket.m', 'Matlab/TCPSendSocket.m']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3',
install_requires=['numpy',
'h5py']
)
remove_tree('DataSocket/Matlab')