Collection of helpers for multilingual websites.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51 lines
1.4 KiB

#!/usr/bin/env python
from io import open
import os
from setuptools import setup, find_packages
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, encoding='utf-8') as handle:
return handle.read()
setup(
name='django-shared-multilingual',
version=__import__('multilingual').__version__,
description=' Collection Django tools for multilingual websites.',
long_description=read('README.md'),
author='Erik Stein',
author_email='erik@classlibrary.net',
url='https://projects.c--y.net/erik/django-shared-multilingual/',
license='MIT License',
platforms=['OS Independent'],
packages=find_packages(
exclude=['tests', 'tests.*'],
),
include_package_data=True,
install_requires=[
# 'Django<2',
'python-dateutil',
'git+https://projects.c--y.net/erik/django-shared-utils.git#egg=shared-utils'
],
classifiers=[
# 'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
zip_safe=False,
# tests_require=[
# 'Django',
# # 'coverage',
# # 'django-mptt',
# # 'pytz',
# ],
# test_suite='main.runtests.runtests',
)