Skip to content

Commit

Permalink
Release: 0.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Aug 11, 2018
1 parent 0bda9e3 commit a010d38
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 49 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Medikit 0.6.3 on 2018-08-07.
# Generated by Medikit 0.6.3 on 2018-08-11.
# All changes will be overriden.
# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.

Expand Down
2 changes: 1 addition & 1 deletion Projectfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ python.add_requirements(
'django-allauth ~=0.36.0',
'django-includes ~=0.2.1',
'jinja2 ~=2.10',
'mondrian ~=0.7.0',
'mondrian ~=0.8.0',
'whitenoise ~=3.3.1',

# Celery
Expand Down
2 changes: 1 addition & 1 deletion django_zero/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.18"
__version__ = '0.0.19'
2 changes: 1 addition & 1 deletion django_zero/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"description": "Zero-configuration django projects.",
"license": "Apache License, Version 2.0",
"name": "django_zero",
"version": "0.0.18"
"version": "0.0.19"
}
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jinja2==2.10
lxml==4.2.4
markupsafe==1.0
medikit==0.6.3
mondrian==0.7.0
mondrian==0.8.0
more-itertools==4.3.0
packaging==17.1
pbr==4.2.0
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ chardet==3.0.4
colorama==0.3.9
defusedxml==0.5.0
django-allauth==0.36.0
django-includes==0.2.1
django-includes==0.2.2
django==2.1
idna==2.7
jinja2==2.10
markupsafe==1.0
mondrian==0.7.0
mondrian==0.8.0
msgpack==0.5.6
oauthlib==2.1.0
pyjwt==1.6.4
Expand Down
79 changes: 37 additions & 42 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Generated by Medikit 0.6.3 on 2018-08-07.
# Generated by Medikit 0.6.3 on 2018-08-11.
# All changes will be overriden.
# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.

from setuptools import setup, find_packages
from codecs import open
from os import path

from setuptools import find_packages, setup

here = path.abspath(path.dirname(__file__))

# Py3 compatibility hacks, borrowed from IPython.
Expand All @@ -21,67 +20,63 @@ def execfile(fname, globs, locs=None):

# Get the long description from the README file
try:
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except:
long_description = ""
long_description = ''

# Get the classifiers from the classifiers file
tolines = lambda c: list(filter(None, map(lambda s: s.strip(), c.split("\n"))))
tolines = lambda c: list(filter(None, map(lambda s: s.strip(), c.split('\n'))))
try:
with open(path.join(here, "classifiers.txt"), encoding="utf-8") as f:
with open(path.join(here, 'classifiers.txt'), encoding='utf-8') as f:
classifiers = tolines(f.read())
except:
classifiers = []

version_ns = {}
try:
execfile(path.join(here, "django_zero/_version.py"), version_ns)
execfile(path.join(here, 'django_zero/_version.py'), version_ns)
except EnvironmentError:
version = "dev"
version = 'dev'
else:
version = version_ns.get("__version__", "dev")
version = version_ns.get('__version__', 'dev')

setup(
author="Romain Dorgueil",
author_email="romain@dorgueil.net",
description="Zero-configuration django projects.",
license="Apache License, Version 2.0",
name="django_zero",
author='Romain Dorgueil',
author_email='romain@dorgueil.net',
description='Zero-configuration django projects.',
license='Apache License, Version 2.0',
name='django_zero',
version=version,
long_description=long_description,
classifiers=classifiers,
packages=find_packages(exclude=["ez_setup", "example", "test"]),
packages=find_packages(exclude=['ez_setup', 'example', 'test']),
include_package_data=True,
install_requires=[
"brotli (~= 1.0.4)",
"django (~= 2.1)",
"django-allauth (~= 0.36.0)",
"django-includes (~= 0.2.1)",
"jinja2 (~= 2.10)",
"mondrian (~= 0.7.0)",
"whitenoise (~= 3.3.1)",
'brotli (~= 1.0.4)', 'django (~= 2.1)', 'django-allauth (~= 0.36.0)',
'django-includes (~= 0.2.1)', 'jinja2 (~= 2.10)',
'mondrian (~= 0.8.0)', 'whitenoise (~= 3.3.1)'
],
extras_require={
"celery": ["celery (~= 4.2.0)", "django_celery_beat (~= 1.1.1)", "django_celery_results (~= 1.0.1)"],
"channels": ["channels (~= 2.1.2)"],
"dev": [
"cookiecutter (~= 1.6)",
"coverage (~= 4.4)",
"django-extensions (~= 2.1)",
"django_debug_toolbar (~= 1.9)",
"honcho (~= 1.0)",
"medikit (~= 0.6)",
"pyquery (~= 1.4)",
"pytest (~= 3.4)",
"pytest-cov (~= 2.5)",
"pytest-django (~= 3.3)",
"sphinx (~= 1.7)",
"werkzeug (~= 0.14)",
'celery': [
'celery (~= 4.2.0)', 'django_celery_beat (~= 1.1.1)',
'django_celery_results (~= 1.0.1)'
],
'channels': ['channels (~= 2.1.2)'],
'dev': [
'cookiecutter (~= 1.6)', 'coverage (~= 4.4)',
'django-extensions (~= 2.1)', 'django_debug_toolbar (~= 1.9)',
'honcho (~= 1.0)', 'medikit (~= 0.6)', 'pyquery (~= 1.4)',
'pytest (~= 3.4)', 'pytest-cov (~= 2.5)', 'pytest-django (~= 3.3)',
'sphinx (~= 1.7)', 'werkzeug (~= 0.14)'
],
"prod": ["gunicorn (~= 19.9.0)"],
'prod': ['gunicorn (~= 19.9.0)']
},
entry_points={
'console_scripts': ['django-zero = django_zero.commands:main']
},
entry_points={"console_scripts": ["django-zero = django_zero.commands:main"]},
url="https://github.com/hartym/django-zero",
download_url="https://github.com/hartym/django-zero/archive/{version}.tar.gz".format(version=version),
url='https://github.com/hartym/django-zero',
download_url=
'https://github.com/hartym/django-zero/archive/{version}.tar.gz'.format(
version=version),
)

0 comments on commit a010d38

Please sign in to comment.