Skip to content

Commit

Permalink
add setup.py with colorama
Browse files Browse the repository at this point in the history
  • Loading branch information
srsudar committed Apr 1, 2015
1 parent 5be4156 commit 3a750ee
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

config = {
'description': 'Examples at the command line',
'author': 'Sam Sudar',
'url': 'https://github.com/srsudar/eg',
'author_email': '[email protected]',
'version': '0.0.1',
'install_requires': [
'colorama'
],
'packages': [
'eg'
],
'scripts': [],
'name': 'eg'
}

setup(**config)

0 comments on commit 3a750ee

Please sign in to comment.