-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 836 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 836 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
from setuptools import setup
setup(name='TopCompiler',
version='0.2',
description='Compiler for Top programming language',
url='https://github.com/CodeClubLux/TopCompiler',
author='CompilerLuke',
author_email="lgoetz@islux.lu",
scripts= ["bin/topc", "bin/topdev", "bin/port.py", "bin/port", "bin/topr", "bin/topc.py", "bin/topr.py", "bin/topdev.py"],
license='MIT',
zip_safe=False,
packages= ["TopCompiler","AST", "optimization"],
install_requires=[
"Flask",
"Flask-SocketIO",
"requests",
"jsbeautifier",
"pypandoc"
],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
],
keywords="top top-lang compiler transpiler",
python_requires='>=3',
)