-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 741 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 741 Bytes
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/python3
# Daniel Nicolas Gisolfi
from setuptools import setup
setup(
name='Compyler',
version='0.4.2',
description='Compiler for Spring 2019 Compilers Course, implemented in python.'+
'Compiles a custom language into a subset of the 6502 opcodes.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dgisolfi/Compyler',
author='dgisolfi',
license='MIT',
packages=['compyler'],
install_requires=[
'termcolor>=1.1.0',
'click>=7.0',
'treelib>=1.5.3',
'beautifultable>=0.7.0'
],
zip_safe=False,
entry_points='''
[console_scripts]
compyler=compyler.__main__:main
'''
)