-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 888 Bytes
/
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
from setuptools import setup
with open('./README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name='remlang',
long_description=readme,
version='0.5',
packages=['remlang', 'remlang.compiler', 'remlang.standard'],
url='https://github.com/thautwarm/Rem',
license='MIT',
author='thautwarm',
author_email='[email protected]',
description='rem langauge, which is very comfortable.',
entry_points={
'console_scripts': [
'irem=remlang.intepreter:repl',
'remlang=remlang.execute:run'
]
},
platforms='any',
install_requires=[
'toolz',
'EBNFParser >= 2.1.2'
],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'],
zip_safe=False)