diff options
| author | blob8108 <spaaam42@gmail.com> | 2014-03-28 12:06:06 +0000 |
|---|---|---|
| committer | blob8108 <spaaam42@gmail.com> | 2014-03-28 12:06:06 +0000 |
| commit | cdfeae6096644486690f126e4351dcdcd9b604ca (patch) | |
| tree | bdc681dc271535dbb6368b7f71daece1594dc56e | |
| parent | c0f175accef3dacfd50bb873f957aeb0bb414e69 (diff) | |
| download | blockext-cdfeae6096644486690f126e4351dcdcd9b604ca.tar.gz blockext-cdfeae6096644486690f126e4351dcdcd9b604ca.zip | |
Add setup.pyv0.1
| -rw-r--r-- | .gitignore | 54 | ||||
| -rw-r--r-- | blockext/__init__.py | 2 | ||||
| -rw-r--r-- | setup.py | 21 |
3 files changed, 76 insertions, 1 deletions
@@ -1 +1,53 @@ -*.pyc +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Sphinx documentation +docs/_build/ diff --git a/blockext/__init__.py b/blockext/__init__.py index adff2b1..1e2b4a6 100644 --- a/blockext/__init__.py +++ b/blockext/__init__.py @@ -21,6 +21,8 @@ except ImportError: from http.server import HTTPServer, BaseHTTPRequestHandler from socketserver import ThreadingMixIn +__version__ = '0.1.0' + # TODO I'm sure this isn't right 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", + ], +) + |
