forked from Ezhil-Language-Foundation/Ezhil-Lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (31 loc) · 1.18 KB
/
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
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (C) 2008-2017,2021 முத்தையா அண்ணாமலை
# ezhil language project
# specify dependecies properly
from setuptools import setup
# from distutils.core import setup
from codecs import open
setup(name='ezhil',
version='1.0rc',
description='Ezhil - Tamil programming language implemented in Python; Ezhil works on Python 3',
author='Muthiah Annamalai',
author_email='[email protected]',
url='https://github.com/Ezhil-Language-Foundation/Ezhil-Lang',
packages=['ezhil'],
license='GPLv3',
platforms='PC,Linux,Mac',
classifiers=['Natural Language :: Tamil',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'],
install_requires=["open-tamil", "argparse"],
entry_points={'console_scripts': [
'ezhili = ezhil.ezhil:main',
]
},
long_description='Ezhil is a Tamil programming language for early education',
download_url='https://github.com/Ezhil-Language-Foundation/Ezhil-Lang/archive/latest.zip',
)