Skip to content
This repository was archived by the owner on Jun 4, 2026. It is now read-only.

Commit b37ae67

Browse files
committed
add setup.py, .gitignore, complete README
1 parent 36acff2 commit b37ae67

3 files changed

Lines changed: 38 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
dist/
3+
minecraft_data.egg-info

README.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
python-minecraft-data
2-
========
2+
=====================
33

4+
Provide easy access to minecraft-data in python
5+
6+
Installation
7+
------------
8+
9+
``python3 setup.py install``
10+
11+
12+
Examples
13+
--------
14+
15+
16+
17+
API Docs
18+
--------
419

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from distutils.core import setup
2+
3+
from setuptools import find_packages
4+
5+
setup(
6+
name='minecraft-data',
7+
description='Provide easy access to minecraft-data in python',
8+
license='MIT',
9+
long_description=open('README.rst').read(),
10+
version='0.0.1',
11+
url='https://github.com/rom1504/python-minecraft-data',
12+
packages=find_packages(),
13+
install_requires=[
14+
],
15+
keywords=['minecraft'],
16+
classifiers=[
17+
'License :: OSI Approved :: MIT License',
18+
]
19+
)

0 commit comments

Comments
 (0)