mirror of
https://github.com/mon/ifstools.git
synced 2025-02-17 10:48:37 +01:00
25 lines
470 B
Python
25 lines
470 B
Python
from setuptools import setup
|
|
import sys
|
|
|
|
|
|
requires = [
|
|
'lxml',
|
|
'tqdm',
|
|
'pillow',
|
|
]
|
|
if sys.version_info < (3,0):
|
|
requires.append('future')
|
|
|
|
setup(
|
|
name='ifstools',
|
|
version='1.1',
|
|
entry_points = {
|
|
'console_scripts': ['ifstools=ifstools:main'],
|
|
},
|
|
packages=['ifstools', 'ifstools.handlers'],
|
|
url='https://github.com/mon/ifstools/',
|
|
author='mon',
|
|
author_email='me@mon.im',
|
|
install_requires=requires,
|
|
)
|