14 changed files with 58 additions and 2 deletions
@ -0,0 +1,53 @@ |
|||||||
|
#!/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-utils', |
||||||
|
version=__import__('utils').__version__, |
||||||
|
description=' Mix of Python and Django utility functions, classed etc.', |
||||||
|
long_description=read('README.md'), |
||||||
|
author='Erik Stein', |
||||||
|
author_email='code@classlibrary.net', |
||||||
|
url='https://projects.c--y.net/erik/django-shared-utils/', |
||||||
|
license='MIT License', |
||||||
|
platforms=['OS Independent'], |
||||||
|
packages=find_packages( |
||||||
|
exclude=['tests', 'testapp'], |
||||||
|
), |
||||||
|
include_package_data=True, |
||||||
|
classifiers=[ |
||||||
|
'Development Status :: 5 - Production/Stable', |
||||||
|
'Environment :: Web Environment', |
||||||
|
'Framework :: Django', |
||||||
|
'Intended Audience :: Developers', |
||||||
|
'License :: OSI Approved :: BSD 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 :: Internet :: WWW/HTTP :: Dynamic Content', |
||||||
|
'Topic :: Software Development', |
||||||
|
'Topic :: Software Development :: Libraries :: Application Frameworks', |
||||||
|
], |
||||||
|
zip_safe=False, |
||||||
|
tests_require=[ |
||||||
|
'Django', |
||||||
|
# 'coverage', |
||||||
|
# 'django-mptt', |
||||||
|
# 'pytz', |
||||||
|
], |
||||||
|
test_suite='testapp.runtests.runtests', |
||||||
|
) |
@ -1,9 +1,12 @@ |
|||||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||||
from __future__ import unicode_literals |
from __future__ import unicode_literals |
||||||
# Erik Stein <code@classlibrary.net>, 2015 |
# Erik Stein <code@classlibrary.net>, 2007-2016 |
||||||
|
|
||||||
from django.utils.translation import ugettext_lazy as _ |
from django.utils.translation import ugettext_lazy as _ |
||||||
|
|
||||||
|
|
||||||
SLUG_HELP = _("Kurzfassung des Namens für die Adresszeile im Browser. Vorzugsweise englisch, keine Umlaute, nur Bindestrich als Sonderzeichen.") |
VERSION = (0, 1, 0) |
||||||
|
__version__ = '.'.join(map(str, VERSION)) |
||||||
|
|
||||||
|
|
||||||
|
SLUG_HELP = _("Kurzfassung des Namens für die Adresszeile im Browser. Vorzugsweise englisch, keine Umlaute, nur Bindestrich als Sonderzeichen.") |
Loading…
Reference in new issue