Browse Source

Restructured package directory.

master
Erik Stein 8 years ago
parent
commit
876a0dd0c4
  1. 0
      multilingual/__init__.py
  2. 0
      multilingual/search/__init__.py
  3. 0
      multilingual/search/multilingual_xapian_backend.py
  4. 0
      multilingual/utils/__init__.py
  5. 0
      multilingual/utils/fields.py
  6. 27
      setup.py
  7. 0
      tests/__init__.py
  8. 0
      tests/locale/de/LC_MESSAGES/django.po
  9. 0
      tests/locale/en/LC_MESSAGES/django.po
  10. 0
      tests/runtests.py
  11. 0
      tests/settings.py
  12. 0
      tests/test_app/__init__.py
  13. 0
      tests/test_app/admin.py
  14. 0
      tests/test_app/apps.py
  15. 0
      tests/test_app/migrations/0001_initial.py
  16. 0
      tests/test_app/migrations/0002_auto_20170220_0928.py
  17. 0
      tests/test_app/migrations/__init__.py
  18. 0
      tests/test_app/models.py
  19. 0
      tests/test_app/search_indexes.py
  20. 0
      tests/test_app/tests.py
  21. 0
      tests/test_app/views.py
  22. 0
      tests/urls.py
  23. 0
      tests/wsgi.py

0
version.py → multilingual/__init__.py

0
main/__init__.py → multilingual/search/__init__.py

0
search/multilingual_xapian_backend.py → multilingual/search/multilingual_xapian_backend.py

0
main/test_app/__init__.py → multilingual/utils/__init__.py

0
utils/fields.py → multilingual/utils/fields.py

27
setup.py

@ -13,7 +13,7 @@ def read(filename):
setup(
name='django-shared-multilingual',
version=__import__('version').__version__,
version=__import__('multilingual').__version__,
description=' Collection Django tools for multilingual websites.',
long_description=read('README.md'),
author='Erik Stein',
@ -22,30 +22,25 @@ setup(
license='MIT License',
platforms=['OS Independent'],
packages=find_packages(
exclude=['tests', 'testapp', 'main'],
exclude=['tests', 'tests.*'],
),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
# 'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.3',
# 'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
],
zip_safe=False,
tests_require=[
'Django',
# 'coverage',
# 'django-mptt',
# 'pytz',
],
test_suite='main.runtests.runtests',
# tests_require=[
# 'Django',
# # 'coverage',
# # 'django-mptt',
# # 'pytz',
# ],
# test_suite='main.runtests.runtests',
)

0
main/test_app/migrations/__init__.py → tests/__init__.py

0
main/locale/de/LC_MESSAGES/django.po → tests/locale/de/LC_MESSAGES/django.po

0
main/locale/en/LC_MESSAGES/django.po → tests/locale/en/LC_MESSAGES/django.po

0
manage.py → tests/runtests.py

0
main/settings.py → tests/settings.py

0
search/__init__.py → tests/test_app/__init__.py

0
main/test_app/admin.py → tests/test_app/admin.py

0
main/test_app/apps.py → tests/test_app/apps.py

0
main/test_app/migrations/0001_initial.py → tests/test_app/migrations/0001_initial.py

0
main/test_app/migrations/0002_auto_20170220_0928.py → tests/test_app/migrations/0002_auto_20170220_0928.py

0
utils/__init__.py → tests/test_app/migrations/__init__.py

0
main/test_app/models.py → tests/test_app/models.py

0
main/test_app/search_indexes.py → tests/test_app/search_indexes.py

0
main/test_app/tests.py → tests/test_app/tests.py

0
main/test_app/views.py → tests/test_app/views.py

0
main/urls.py → tests/urls.py

0
main/wsgi.py → tests/wsgi.py

Loading…
Cancel
Save