enet-client-server/setup.py

4 lines
396 B
Python
Raw Normal View History

from setuptools import setup
2022-04-08 22:19:15 +02:00
setup(name="enetcomponents", version="0.1.1", 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"])