summaryrefslogtreecommitdiff
path: root/setup.py
blob: f6d4a7f58f689e24ff3db5fe9cd83533841d7555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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",
      ],
)