Skip to content

Commit

Permalink
Modified setup.py to use setuptools.
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Sep 5, 2015
1 parent 45cc2d4 commit 9b4774b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import setup

setup(
name='user-agents',
Expand All @@ -13,7 +13,7 @@
long_description=open('README.rst').read(),
zip_safe=False,
include_package_data=True,
package_data = { '': ['README.rst'] },
package_data={'': ['README.rst']},
install_requires=['ua-parser'],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 9b4774b

Please sign in to comment.