mirror of
https://github.com/mon/kbinxml.git
synced 2026-03-21 18:04:52 -05:00
28 lines
664 B
Python
28 lines
664 B
Python
from setuptools import setup
|
|
import sys
|
|
|
|
|
|
requires = [
|
|
'bitarray',
|
|
'lxml',
|
|
]
|
|
if sys.version_info < (3,0):
|
|
requires.append('future')
|
|
|
|
version = '1.3'
|
|
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
|
|
)
|