-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
36 lines (35 loc) · 1.15 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
36
from setuptools import setup
setup(
name='pseudo-python',
version='0.2.34',
description='a python3 to pseudo compiler',
author='Alexander Ivanov',
author_email='[email protected]',
url='https://github.com/alehander42/pseudo-python',
download_url='https://github.com/alehander42/pseudo-python/archive/v0.2.tar.gz',
keywords=['compiler', 'generation', 'c++', 'ruby', 'c#', 'javascript', 'go', 'python', 'pseudo'],
packages=['pseudo_python'],
license='MIT',
install_requires=[
'PyYAML',
'colorama',
'termcolor',
'pseudo>=0.2.3'
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': [
'pseudo-python=pseudo_python.main:main',
],
},
)