Skip to content

Commit ad801d2

Browse files
author
Colin Barnwell
committed
Fix setup.py
1 parent cecefff commit ad801d2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
from distutils.core import setup
2-
3-
from setup_helpers import package_files
1+
from setuptools import setup, find_packages
42

53

64
setup(
75
name='django-url-mapper',
8-
version='0.1.1',
6+
version='0.2.0',
97
author='Colin Barnwell',
108
scripts=[],
119
description='Use fixed keys in your Django template to refer to dynamic URLs',
1210
long_description=open('README.md').read(),
1311
install_requires=[
1412
"Django >= 1.6",
1513
],
16-
**package_files(app_dir='urlmapper')
14+
packages=find_packages(),
15+
include_package_data=True
1716
)

0 commit comments

Comments
 (0)