Skip to content

Commit

Permalink
Added setup.py to allow packaging as a Python Distribution Package. F…
Browse files Browse the repository at this point in the history
…ixes #33.
  • Loading branch information
Greg Albrecht committed Nov 16, 2012
1 parent 9d024da commit 1e37664
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
@@ -0,0 +1,17 @@
#!/usr/bin/env python
"""Pythonic Setup for autoenv."""


import setuptools


setuptools.setup(
version='1.0.0',
name='autoenv',
description='Directory-based environments.',
author='Kenneth Reitz',
author_email='_@kennethreitz.com',
license='See LICENSE.',
url='https://github.com/kennethreitz/autoenv',
scripts=['activate.sh'],
)

0 comments on commit 1e37664

Please sign in to comment.