mirror of
https://github.com/lcdr/utils.git
synced 2024-08-30 17:32:16 +00:00
Add setup.py
This commit is contained in:
parent
dfd67c59de
commit
31b17377de
@ -2,7 +2,7 @@
|
||||
## Utilities for working with LEGO Universe file formats and network packets.
|
||||
### Created by lcdr
|
||||
### Source repository at https://bitbucket.org/lcdr/utils/
|
||||
### License: GPL v3
|
||||
### License: AGPL v3
|
||||
|
||||
### Included utilities:
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
|
||||
### Requirements:
|
||||
* Python 3.6
|
||||
* https://bitbucket.org/lcdr/pyraknet for some scripts
|
||||
* https://bitbucket.org/lcdr/bitstream for some scripts
|
||||
|
||||
### Installation
|
||||
|
||||
|
14
setup.py
Normal file
14
setup.py
Normal 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",
|
||||
)
|
Loading…
Reference in New Issue
Block a user