forked from TkTech/PyNBT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 718 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- coding: utf8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='PyNBT',
version='1.2.1',
description='Tiny, liberally-licensed NBT library. NBT is the datafile format used in Minecraft.',
author='Tyler Kennedy',
author_email='tk@tkte.ch',
url='https://github.com/TkTech/PyNBT',
packages=[
'pynbt'
],
scripts=[
'scripts/debug-nbt',
'scripts/debug-region'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
]
)