summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorblob8108 <spaaam42@gmail.com>2014-03-28 12:06:06 +0000
committerblob8108 <spaaam42@gmail.com>2014-03-28 12:06:06 +0000
commitcdfeae6096644486690f126e4351dcdcd9b604ca (patch)
treebdc681dc271535dbb6368b7f71daece1594dc56e /setup.py
parentc0f175accef3dacfd50bb873f957aeb0bb414e69 (diff)
downloadblockext-cdfeae6096644486690f126e4351dcdcd9b604ca.tar.gz
blockext-cdfeae6096644486690f126e4351dcdcd9b604ca.zip
Add setup.pyv0.1
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..f6d4a7f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+import re
+from setuptools import setup
+
+
+version = re.search("__version__ = '([^']+)'",
+ open('blockext/__init__.py').read()).group(1)
+
+
+setup(name = 'blockext',
+ version = version,
+ author = 'Tim Radvan, Connor Hudson',
+ author_email = 'blob8108@gmail.com',
+ url = 'https://github.com/blockext/blockext',
+ description = 'Module for writing Scratch 2.0 and Snap! extensions',
+ license = 'MIT',
+ packages = ['blockext'],
+ classifiers = [
+ "Programming Language :: Python",
+ ],
+)
+