Skip to content

Commit

Permalink
Prepare setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
djmattyg007 committed Mar 26, 2015
1 parent 3aa5864 commit efed11f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
File renamed without changes.
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python

from setuptools import setup

setup(name="idiotscript",
version="1.0.0",
description="An easier, less powerful alternative to regular expressions",
author="Matthew Gamble",
author_email="git@matthewgamble.net",
url="https://github.com/djmattyg007/IdiotScript",
download_url="https://github.com/djmattyg007/IdiotScript/archive/1.0.0.zip",
packages=['idiotscript'],
scripts=['bin/idiotscript.py'],
package_data={'idiotscript': ['README.rst']},
data_files=[('share/doc/python-idiotscript', ['README.txt', 'LICENSE.txt'])],
license="UNLICENSE",
install_requires=[]
)

0 comments on commit efed11f

Please sign in to comment.