Skip to content

Commit c4ddf83

Browse files
timtim
authored andcommitted
update find_packages
1 parent 2436184 commit c4ddf83

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
upload:
2+
python setup.py sdist bdist upload

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33

44
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
55
README = readme.read()
@@ -9,8 +9,8 @@
99

1010
setup(
1111
name='django-kss',
12-
version='0.1.10',
13-
packages=['django_kss', 'django_kss.templatetags'],
12+
version='0.1.11',
13+
packages=find_packages() ,
1414
include_package_data=True,
1515
license='BSD License', # example license
1616
description='A simple Django app to make styleguide',

0 commit comments

Comments
 (0)