Add setup.py

This commit is contained in:
lcdr 2019-05-17 11:57:59 +02:00
parent dfd67c59de
commit 31b17377de
49 changed files with 16 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## Utilities for working with LEGO Universe file formats and network packets. ## Utilities for working with LEGO Universe file formats and network packets.
### Created by lcdr ### Created by lcdr
### Source repository at https://bitbucket.org/lcdr/utils/ ### Source repository at https://bitbucket.org/lcdr/utils/
### License: GPL v3 ### License: AGPL v3
### Included utilities: ### Included utilities:
@ -15,7 +15,7 @@
### Requirements: ### Requirements:
* Python 3.6 * Python 3.6
* https://bitbucket.org/lcdr/pyraknet for some scripts * https://bitbucket.org/lcdr/bitstream for some scripts
### Installation ### Installation

14
setup.py Normal file
View File

@ -0,0 +1,14 @@
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://bitbucket.org/lcdr/utils/",
license="AGPL v3",
packages=["utils"],
python_requires=">=3.6",
)