Skip to content

Commit

Permalink
Fix setuptool
Browse files Browse the repository at this point in the history
  • Loading branch information
alehander92 committed Mar 11, 2016
1 parent 8a97609 commit f9e105c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup


setup(
name='pseudo',
Expand All @@ -16,6 +20,6 @@
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: JavaScipt'
'Programming Language :: JavaScript'
],
)

0 comments on commit f9e105c

Please sign in to comment.