We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2436184 commit c4ddf83Copy full SHA for c4ddf83
Makefile
@@ -0,0 +1,2 @@
1
+upload:
2
+ python setup.py sdist bdist upload
setup.py
@@ -1,5 +1,5 @@
import os
-from setuptools import setup
+from setuptools import setup, find_packages
3
4
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
5
README = readme.read()
@@ -9,8 +9,8 @@
9
10
setup(
11
name='django-kss',
12
- version='0.1.10',
13
- packages=['django_kss', 'django_kss.templatetags'],
+ version='0.1.11',
+ packages=find_packages() ,
14
include_package_data=True,
15
license='BSD License', # example license
16
description='A simple Django app to make styleguide',
0 commit comments