Skip to content

Commit

Permalink
Release: 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Mar 15, 2019
1 parent 4c14e7d commit 83d78ec
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 53 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Medikit 0.6.3 on 2019-03-15.
# Generated by Medikit 0.7.0 on 2019-03-15.
# All changes will be overriden.
# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.

Expand Down Expand Up @@ -26,7 +26,7 @@ BLACK ?= $(shell which black || echo black)
ISORT ?= $(shell which isort || echo isort)
MEDIKIT ?= $(PYTHON) -m medikit
MEDIKIT_UPDATE_OPTIONS ?=
MEDIKIT_VERSION ?= 0.6.3
MEDIKIT_VERSION ?= 0.7.0

.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 medikit/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.3"
__version__ = '0.7.0'
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ sphinx-sitemap==1.0.2
sphinx==1.7.9
sphinxcontrib-websupport==1.1.0
urllib3==1.24.1
yapf==0.26.0
91 changes: 42 additions & 49 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Generated by Medikit 0.6.3 on 2019-03-15.
# Generated by Medikit 0.7.0 on 2019-03-15.
# 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,76 +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.2.3)",
"jinja2 (~= 2.9)",
"mondrian (~= 0.7)",
"packaging (~= 19.0)",
"pip-tools (~= 2.0.2)",
"stevedore (~= 1.28)",
"whistle (~= 1.0)",
"yapf (~= 0.20)",
'git-semver (~= 0.2.3)', 'jinja2 (~= 2.9)', 'mondrian (~= 0.7)',
'packaging (~= 19.0)', 'pip-tools (~= 2.0.2)', 'stevedore (~= 1.28)',
'whistle (~= 1.0)', 'yapf (~= 0.20)'
],
extras_require={
"dev": [
"coverage (~= 4.4)",
"pytest (~= 3.4)",
"pytest-cov (~= 2.5)",
"releases (>= 1.6, < 1.7)",
"sphinx (~= 1.7)",
"sphinx-sitemap (~= 1.0)",
'dev': [
'coverage (~= 4.4)', 'pytest (~= 3.4)', 'pytest-cov (~= 2.5)',
'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",
"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',
'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 83d78ec

Please sign in to comment.