py-phias/setup.py
2016-02-01 22:48:10 +03:00

22 lines
703 B
Python

from distutils.core import setup
setup(
name='py-phias',
version='0.0.1',
packages=['aore', 'aore.fias', 'aore.config', 'aore.dbutils', 'aore.updater', 'aore.miscutils'],
url='https://github.com/jar3b/py-phias',
download_url='https://github.com/jar3b/py-phias/archive/{0}.tar.gz'.format("master"),
license='',
author='hellotan',
author_email='hellotan@live.ru',
description='Python application that can operate with FIAS (Russian Address Object DB)',
requires=['lxml',
'psycopg2',
'bottle',
'pysimplesoap',
'python-Levenshtein',
'enum34',
'rarfile',
'requests']
)