forked from TkTech/Burger
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
26 lines (25 loc) · 753 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
setup(
name="Burger",
packages=find_packages(),
version="0.3.0",
description="Extract information from Minecraft bytecode.",
author="Tyler Kennedy",
author_email="[email protected]",
url="http://github.com/mcdevs/Burger",
keywords=["java", "minecraft"],
install_requires=[
'six>=1.4.0',
'Jawa>=2.2.0,<3'
],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Disassemblers"
]
)