-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
33 lines (32 loc) · 1.13 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
from setuptools import setup
setup(
name='pseudo',
version='0.2.16',
description='a framework for idiomatic code generation',
author='Alexander Ivanov',
author_email='alehander42@gmail.com',
url='https://github.com/alehander42/pseudo',
download_url='https://github.com/alehander42/pseudo/archive/v0.2.tar.gz',
keywords=['compiler', 'generation', 'c++', 'html', 'ruby', 'c#', 'javascript', 'go', 'python', 'alexander'],
packages=['pseudo', 'pseudo.api_translators', 'pseudo.middlewares', 'pseudo.generators'],
license='MIT',
install_requires=[
'PyYAML'
],
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=pseudo.main:main',
],
},
)