mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2025-01-03 14:37:48 +01:00
Setup.py and versioning
This commit is contained in:
parent
59a5fe1285
commit
3cb922310a
@ -0,0 +1,7 @@
|
||||
"""
|
||||
A modern, Python3-compatible, well-documented library for communicating
|
||||
with a MineCraft server.
|
||||
"""
|
||||
__version__ = "0.0.1"
|
||||
MINECRAFT_VERSION = "1.8.3"
|
||||
PROTOCOL_VERSION = 47
|
12
setup.py
Normal file
12
setup.py
Normal file
@ -0,0 +1,12 @@
|
||||
from distutils.core import setup
|
||||
from minecraft import __version__
|
||||
|
||||
MAIN_AUTHORS = ["Ammar Askar <ammar@ammaraskar.com>",
|
||||
"Jeppe Klitgaard <jeppe@dapj.dk>"]
|
||||
|
||||
setup(name="minecraft",
|
||||
version=__version__,
|
||||
description="Python MineCraft library",
|
||||
author=", ".join(MAIN_AUTHORS),
|
||||
packages=["minecraft"]
|
||||
)
|
Loading…
Reference in New Issue
Block a user