from setuptools import setup, find_packages from is_core.version import get_version setup( name='django-is-core', version=get_version(), description="Information systems core.", keywords='django, admin, information systems, REST', author='Lubos Matl', author_email='*****@*****.**', url='https://github.com/matllubos/django-is-core', license='BSD', package_dir={'is_core': 'is_core'}, include_package_data=True, packages=find_packages(), classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', ], install_requires=[ 'django>=1.10', 'django-pyston~=2.9.5', 'django-block-snippets==2.0.1', 'django-chamber~=0.4.6', 'python-dateutil~=2.2',
from setuptools import setup, find_packages from is_core.version import get_version setup( name='django-is-core', version=get_version(), description="Information systems core.", keywords='django, admin, information systems, REST', author='Lubos Matl', author_email='*****@*****.**', url='https://github.com/matllubos/django-is-core', license='LGPL', package_dir={'is_core': 'is_core'}, include_package_data=True, packages=find_packages(), classifiers=[ 'Development Status :: 6 - Beta', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE (LGPL)', 'Natural Language :: Czech', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: Site Management', ], install_requires=[ 'django>=1.8',