forked from wbond/pymeta3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 879 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
"""Setup script for the PyMeta distribution."""
from distutils.core import setup
setup(
name="PyMeta3",
version="0.5.1",
url="https://github.com/wbond/pymeta3",
description="Pattern-matching language based on OMeta for Python 3 and 2",
long_description=open('README').read(),
author="wbond",
author_email="[email protected]",
license="MIT License",
packages=["pymeta"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
]
)