mirror of
https://github.com/lcdr/utils.git
synced 2024-08-30 17:32:16 +00:00
15 lines
301 B
Python
15 lines
301 B
Python
import os.path
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="utils",
|
|
version="0.1.0",
|
|
description="Utilities for working with LEGO Universe file formats and network packets.",
|
|
author="lcdr",
|
|
url="https://github.com/lcdr/utils/",
|
|
license="AGPL v3",
|
|
packages=["utils"],
|
|
python_requires=">=3.6",
|
|
)
|