-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
36 lines (33 loc) · 1.03 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
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pycoolc',
description="COOL Language Compiler in Python 3.",
long_description="PyCOOLC is a feature-complete compiler for the COOL Programming Language, targeting the MIPS 32-bit Architecture and written entirely in Python 3.",
version='0.0.1',
author='Ahmad Alhour',
maintainer='Ahmad Alhour',
author_email='[email protected]',
license="MIT",
platforms='Cross Platform',
url='https://github.com/aalhour/pycoolc',
packages=[
'pycoolc',
'tests'
],
entry_points={
'console_scripts': [
'pycoolc = pycoolc.pycoolc:main'
],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Intended Audience :: Education",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Compilers",
"License :: OSI Approved :: MIT License"
],
install_requires=['ply']
)