Skip to content

Commit

Permalink
Release: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Nov 17, 2020
1 parent 6f8a69a commit 01ef292
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 43 deletions.
2 changes: 1 addition & 1 deletion django_zero/_version.py
@@ -1 +1 @@
__version__ = "0.0.21rc3"
__version__ = '0.1.0'
2 changes: 1 addition & 1 deletion django_zero/package.json
Expand Up @@ -25,5 +25,5 @@
"description": "Zero-configuration django projects.",
"license": "Apache License, Version 2.0",
"name": "django_zero",
"version": "0.0.21rc3"
"version": "0.1.0"
}
77 changes: 36 additions & 41 deletions setup.py
Expand Up @@ -2,11 +2,10 @@
# 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.9",
"django ~= 3.1, < 3.2",
"django-allauth ~= 0.43.0",
"django-includes ~= 0.3.1",
"jinja2 ~= 2.11",
"mondrian ~= 0.8",
"whitenoise ~= 5.2.0",
'brotli ~= 1.0.9', 'django ~= 3.1, < 3.2', 'django-allauth ~= 0.43.0',
'django-includes ~= 0.3.1', 'jinja2 ~= 2.11', 'mondrian ~= 0.8',
'whitenoise ~= 5.2.0'
],
extras_require={
"celery": ["celery ~= 4.0", "django_celery_beat ~= 2.1.0", "django_celery_results ~= 1.2.1"],
"channels": ["channels ~= 3.0.0", "daphne ~= 3.0.0"],
"dev": [
"cookiecutter ~= 1.7",
"coverage ~= 5.3",
"django-extensions ~= 3.0.9",
"django_debug_toolbar ~= 3.1.1",
"honcho ~= 1.0",
"isort",
"medikit ~= 0.7",
"pyquery ~= 1.4",
"pytest >= 5.4.0",
"pytest-cov ~= 2.7",
"pytest-django ~= 4.0",
"werkzeug ~= 1.0",
'celery': [
'celery ~= 4.0', 'django_celery_beat ~= 2.1.0',
'django_celery_results ~= 1.2.1'
],
'channels': ['channels ~= 3.0.0', 'daphne ~= 3.0.0'],
'dev': [
'cookiecutter ~= 1.7', 'coverage ~= 5.3',
'django-extensions ~= 3.0.9', 'django_debug_toolbar ~= 3.1.1',
'honcho ~= 1.0', 'isort', 'medikit ~= 0.7', 'pyquery ~= 1.4',
'pytest >= 5.4.0', 'pytest-cov ~= 2.7', 'pytest-django ~= 4.0',
'werkzeug ~= 1.0'
],
"prod": ["gunicorn ~= 20.0"],
'prod': ['gunicorn ~= 20.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 01ef292

Please sign in to comment.