forked from SpockBotMC/python-minecraft-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 627 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
from setuptools import find_packages
setup(
name='minecraft_data',
description='Provide easy access to minecraft data in python',
license='MIT',
long_description=open('README.rst').read(),
version='0.3.1',
maintainer='Romain Beaumont',
maintainer_email='[email protected]',
url='https://github.com/rom1504/python-minecraft-data',
packages=find_packages(),
package_data={'minecraft_data': ["*/data/enums/*.json"]},
install_requires=[
],
keywords=['minecraft'],
classifiers=[
'License :: OSI Approved :: MIT License',
]
)