Skip to content

Commit

Permalink
use setuptools_scm for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Apr 2, 2016
1 parent 6065e06 commit 087a143
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
from setuptools import find_packages, setup


with open('README.rst', 'r') as fh:
description = '\n'.join(fh.readlines())

tests_require = [
'pytest>=2.8.3',
'pytest-cov>=2.2.0',
Expand All @@ -12,8 +8,9 @@

setup(
name='django-healthchecks',
version='0.7.0',
description=description,
version='0.7.1',
description="Simple Django app/framework to publish health checks",
long_description=open('README.rst', 'r').read(),
url='https://github.com/mvantellingen/django-healthchecks',
author="Michael van Tellingen",
author_email="[email protected]",
Expand All @@ -23,8 +20,8 @@
],
tests_require=tests_require,
extras_require={'test': tests_require},
entry_points={
},
use_scm_version=True,
entry_points={},
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
Expand Down

0 comments on commit 087a143

Please sign in to comment.