Skip to content

Commit

Permalink
Replace MANIFEST, bump to 2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shacker committed Apr 10, 2019
1 parent 405791d commit 4afc822
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include LICENSE
include README.md
recursive-include todo/data *
recursive-include todo/static *
recursive-include todo/templates *
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from io import open
from os import path

from setuptools import setup
from setuptools import setup, find_packages

here = path.abspath(path.dirname(__file__))

Expand All @@ -13,7 +13,7 @@

setup(
name="django-todo",
version="2.4.2",
version="2.4.4",
description="A multi-user, multi-group task management and assignment system for Django.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -35,7 +35,8 @@
"Topic :: Software Development :: Bug Tracking",
],
keywords="lists todo bug bugs tracking",
packages=["todo"],
packages=find_packages(), # Finds modules with an __init__.py
include_package_data=True, # Pulls in non-module data from MANIFEST.in
python_requires=">=3.5",
install_requires=["unidecode"],
project_urls={
Expand Down

0 comments on commit 4afc822

Please sign in to comment.