Skip to content

Commit

Permalink
Release: 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Sep 10, 2019
1 parent 3271297 commit e863e87
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 58 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,4 +1,4 @@
# Generated by Medikit 0.7.3 on 2019-09-10.
# Generated by Medikit 0.7.4 on 2019-09-10.
# All changes will be overriden.
# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.

Expand Down Expand Up @@ -28,7 +28,7 @@ SPHINX_BUILDDIR ?= $(SPHINX_SOURCEDIR)/_build
SPHINX_AUTOBUILD ?= $(PYTHON_DIRNAME)/sphinx-autobuild
MEDIKIT ?= $(PYTHON) -m medikit
MEDIKIT_UPDATE_OPTIONS ?=
MEDIKIT_VERSION ?= 0.7.3
MEDIKIT_VERSION ?= 0.7.4

.PHONY: $(SPHINX_SOURCEDIR) clean format help install install-dev medikit quick release test update update-requirements watch-$(SPHINX_SOURCEDIR)

Expand Down
2 changes: 1 addition & 1 deletion Projectfile
Expand Up @@ -45,7 +45,7 @@ python.setup(
},
)
python.add_requirements(
"git-semver ~=0.3",
"git-semver ~=0.3.1",
"jinja2 ~=2.10",
"mondrian ~=0.8",
"packaging ~=19.0",
Expand Down
2 changes: 1 addition & 1 deletion medikit/_version.py
@@ -1 +1 @@
__version__ = "0.7.3"
__version__ = '0.7.4'
1 change: 0 additions & 1 deletion medikit/steps/version.py
@@ -1,5 +1,4 @@
import os
import runpy

from git import Repo
from git_semver import get_current_version
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -2,7 +2,7 @@
attrs==19.1.0
click==7.0
colorama==0.3.9
git-semver==0.3.0
git-semver==0.3.1
gitdb2==2.0.5
gitpython==2.1.14
jinja2==2.10.1
Expand Down
94 changes: 42 additions & 52 deletions setup.py
@@ -1,12 +1,11 @@
# Generated by Medikit 0.7.3 on 2019-09-10.
# Generated by Medikit 0.7.4 on 2019-09-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,79 +20,70 @@ 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, "medikit/_version.py"), version_ns)
execfile(path.join(here, 'medikit/_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="Opinionated python 3.5+ project management.",
license="Apache License, Version 2.0",
name="medikit",
python_requires=">=3.5",
author='Romain Dorgueil',
author_email='romain@dorgueil.net',
description='Opinionated python 3.5+ project management.',
license='Apache License, Version 2.0',
name='medikit',
python_requires='>=3.5',
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=[
"git-semver ~= 0.3",
"jinja2 ~= 2.10",
"mondrian ~= 0.8",
"packaging ~= 19.0",
"pip-tools ~= 4.0",
"semantic-version ~= 2.8",
"stevedore ~= 1.28",
"whistle ~= 1.0",
"yapf ~= 0.20",
'git-semver ~= 0.3.1', 'jinja2 ~= 2.10', 'mondrian ~= 0.8',
'packaging ~= 19.0', 'pip-tools ~= 4.0', 'semantic-version ~= 2.8',
'stevedore ~= 1.28', 'whistle ~= 1.0', 'yapf ~= 0.20'
],
extras_require={
"dev": [
"coverage ~= 4.5",
"isort",
"pytest ~= 5.0",
"pytest-cov ~= 2.7",
"releases >= 1.6, < 1.7",
"sphinx ~= 1.7",
"sphinx-sitemap ~= 1.0",
'dev': [
'coverage ~= 4.5', 'isort', 'pytest ~= 5.0', 'pytest-cov ~= 2.7',
'releases >= 1.6, < 1.7', 'sphinx ~= 1.7', 'sphinx-sitemap ~= 1.0'
]
},
entry_points={
"console_scripts": ["medikit=medikit.__main__:main"],
"medikit.feature": [
"django = medikit.feature.django:DjangoFeature",
"docker = medikit.feature.docker:DockerFeature",
"format = medikit.feature.format:FormatFeature",
"git = medikit.feature.git:GitFeature",
"kube = medikit.feature.kube:KubeFeature",
"make = medikit.feature.make:MakeFeature",
"nodejs = medikit.feature.nodejs:NodeJSFeature",
"pylint = medikit.feature.pylint:PylintFeature",
"pytest = medikit.feature.pytest:PytestFeature",
"python = medikit.feature.python:PythonFeature",
"sphinx = medikit.feature.sphinx:SphinxFeature",
"webpack = medikit.feature.webpack:WebpackFeature",
"yapf = medikit.feature.yapf:YapfFeature",
],
'console_scripts': ['medikit=medikit.__main__:main'],
'medikit.feature': [
'django = medikit.feature.django:DjangoFeature',
'docker = medikit.feature.docker:DockerFeature',
'format = medikit.feature.format:FormatFeature',
'git = medikit.feature.git:GitFeature',
'kube = medikit.feature.kube:KubeFeature',
'make = medikit.feature.make:MakeFeature',
'nodejs = medikit.feature.nodejs:NodeJSFeature',
'pylint = medikit.feature.pylint:PylintFeature',
'pytest = medikit.feature.pytest:PytestFeature',
'python = medikit.feature.python:PythonFeature',
'sphinx = medikit.feature.sphinx:SphinxFeature',
'webpack = medikit.feature.webpack:WebpackFeature',
'yapf = medikit.feature.yapf:YapfFeature'
]
},
url="https://python-medikit.github.io/",
download_url="https://github.com/python-medikit/medikit/archive/{version}.tar.gz".format(version=version),
url='https://python-medikit.github.io/',
download_url=
'https://github.com/python-medikit/medikit/archive/{version}.tar.gz'.
format(version=version),
)

0 comments on commit e863e87

Please sign in to comment.