forked from twoolie/NBT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 1015 Bytes
/
setup.py
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
from setuptools import setup
from nbt import VERSION
setup(
name = 'NBT',
version = ".".join(str(x) for x in VERSION),
description = 'Named Binary Tag Reader/Writer',
author = 'Thomas Woolford',
author_email = '[email protected]',
url = 'http://github.com/twoolie/NBT',
license = open("LICENSE.txt").read(),
long_description = open("README.txt").read(),
packages = ['nbt'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)