-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
executable file
·30 lines (28 loc) · 1.09 KB
/
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
29
30
#!/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 = 'woolford.thomas@gmail.com',
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.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)