mirror of
https://github.com/mon/kbinxml.git
synced 2026-03-22 02:15:37 -05:00
27 lines
644 B
Python
27 lines
644 B
Python
from setuptools import setup
|
|
import sys
|
|
|
|
|
|
requires = [
|
|
'lxml',
|
|
]
|
|
if sys.version_info < (3,0):
|
|
requires.append('future')
|
|
|
|
version = '1.7'
|
|
setup(
|
|
name='kbinxml',
|
|
description="Decoder/encoder for Konami's binary XML format",
|
|
long_description="See Github for up to date documentation",
|
|
version=version,
|
|
entry_points = {
|
|
'console_scripts': ['kbinxml=kbinxml:main'],
|
|
},
|
|
packages=['kbinxml'],
|
|
url='https://github.com/mon/kbinxml/',
|
|
download_url = 'https://github.com/mon/kbinxml/archive/{}.tar.gz'.format(version),
|
|
author='mon',
|
|
author_email='me@mon.im',
|
|
install_requires=requires
|
|
)
|