Skip to content

Commit 83905ae

Browse files
committed
Version 1.0.2
1 parent e16f8b4 commit 83905ae

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ promises (will Polyfill for older browsers) and traditional callbacks.
4949
Next Steps
5050
----------
5151

52-
* :doc:`start`
52+
* `Getting Started <https://django-task-api.readthedocs.io/en/latest/start.html>`_
5353
* `GitHub <https://github.com/nikmolnar/django-task-api>`_

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
from setuptools.command.build_py import build_py
99
from setuptools.command.sdist import sdist
1010

11+
import task_api
12+
1113
DIR = os.path.dirname(__file__)
1214

1315

@@ -51,11 +53,17 @@ def run(self):
5153
super(DevelopCommand, self).run()
5254

5355

56+
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r') as f:
57+
long_description = f.read()
58+
59+
5460
setup(
5561
name='django-task-api',
5662
description='A REST API for managing background tasks in Django',
63+
long_description=long_description,
64+
long_description_content_type='text/x-rst',
5765
keywords='django,task,api,background,rest',
58-
version='0.0.0',
66+
version=task_api.__version__,
5967
packages=['task_api', 'task_api.backends', 'task_api.migrations'],
6068
package_data={'task_api': ['static/*.js']},
6169
install_requires=['djangorestframework==3.*', 'django>=1.11', 'celery==4.*', 'six'],

task_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.0.0'
1+
__version__ = '1.0.2'
22

33
default_app_config = 'task_api.apps.TaskAPIConfig'

0 commit comments

Comments
 (0)