forked from Ezhil-Language-Foundation/Ezhil-Lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 957 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
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (C) 2008-2015 முத்தையா அண்ணாமலை
# ezhil language project
try:
# specify dependecies properly
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
setup(name='ezhil',
version='0.76',
description='Ezhil - Tamil programming language implemented in Python',
author='Muthiah Annamalai',
author_email='[email protected]',
url='https://github.com/arcturusannamalai/Ezhil-Lang',
packages=['ezhil'],
license='GPLv3',
platforms='PC,Linux,Mac',
classifiers='Natural Language :: Tamil',
install_requires = ["open-tamil","argparse"],
long_description='Ezhil is a Tamil programming language for early education',#open('README.md','r','UTF-8').read()
download_url='https://github.com/arcturusannamalai/Ezhil-Lang/archive/latest.zip',#pip
)