Skip to content

Commit

Permalink
fixed long_description for pypi project description
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas9 committed Feb 24, 2019
1 parent 2ef5fb3 commit a3eb34c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build_n_run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
docker build -t django-unixdatetimefield:1.0.1 .
docker build -t django-unixdatetimefield:1.0.2 .
IMAGE_ID="$(docker images -q | head -n 1)"
CONTAINER_ID="$(docker run -d -p 8080:8080 -v $(pwd):/code $IMAGE_ID)"
echo "running container id is $CONTAINER_ID"
2 changes: 1 addition & 1 deletion django_unixdatetimefield/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .fields import UnixDateTimeField

__version__ = '1.0.1'
__version__ = '1.0.2'
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@

import setuptools

with open('README.md', 'r') as f:
long_description = f.read()

setuptools.setup(
name='django-unixdatetimefield',
version='1.0.1',
version='1.0.2',
author='Niklas Andersson',
author_email='nandersson900@gmail.com',
description='UnixDateTimeField in Django',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Niklas9/django-unixdatetimefield',
zip_safe=False,
install_requires=[
Expand Down

0 comments on commit a3eb34c

Please sign in to comment.