Skip to content

Commit

Permalink
Use setuptools instead of distutils because distutils doesn't have in…
Browse files Browse the repository at this point in the history
…stall_requires option.
  • Loading branch information
takuan-osho committed Mar 15, 2015
1 parent 00cec69 commit 0281b22
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
Expand Up @@ -2,7 +2,7 @@

import os

from distutils.core import setup
from setuptools import setup

setup(
name='yael',
Expand All @@ -15,7 +15,7 @@
license='MIT',
long_description=open('README.txt').read(),
keywords=['epub', 'yael', 'EPUB 2', 'EPUB 3'],
install_requires='lxml >= 3.4.0, simplejson >= 3.6.0',
install_requires=['lxml >= 3.4.0', 'simplejson >= 3.6.0'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
Expand Down

0 comments on commit 0281b22

Please sign in to comment.