Skip to content

Commit

Permalink
Setup package (#1)
Browse files Browse the repository at this point in the history
* Add structure for publishing package.

* Add MANIFEST.in.
  • Loading branch information
Szczurowsky authored Sep 28, 2021
1 parent b46875b commit 5789520
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md
include LICENSE
1 change: 1 addition & 0 deletions mcnetworking/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup
from mcnetworking import __version__

setup(
name='mcnetworking',
url='https://github.com/Szczurowsky/mcnetworking/tree/master',
author='Kamil Szczurowski',
author_email='[email protected]',
packages=['mcnetworking'],
version=__version__,
license='MPL-2.0',
description='Minecraft Networking Tools - Python implementations of common Minecraft protocols and packets.',
long_description=open('README.txt').read(),
)

0 comments on commit 5789520

Please sign in to comment.