From 8eab859f3e8b6d5c76c492cc16cb44ec221c9184 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 12 May 2020 00:10:19 -0500 Subject: [PATCH] Added setup file to install all enet components --- setup.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..eea852f --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup(name="enetcomponents", version="0.1.0", author="Manuel cortez", author_email="manuel@manuelcortez.net", url="https://code.manuelcortez.net/manuelcortez/enet-client-server", packages=["enetcomponents"], long_description=open("readme.md", "r").read(), description="Enet components to make client-server communication a bit easier.", install_requires=["pyenet"]) \ No newline at end of file