forked from Ezhil-Language-Foundation/Ezhil-Lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 632 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup
from codecs import open
setup(name='ezhil',
version='0.7-dev',
description='Ezhil - Tamil programming language implemented in Python',
author='Muthiah Annamalai',
author_email='muthuspost@gmail.com',
url='https://github.com/arcturusannamalai/Ezhil-Lang',
packages=['ezhil'],
license='GPLv3',
platforms='PC,Linux,Mac',
classifiers='Natural Language :: Tamil',
long_description=open('README.md','r','UTF-8').read(),
download_url='https://github.com/arcturusannamalai/Ezhil-Lang/archive/latest.zip',#pip
)