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
|
# coding=utf-8
from setuptools import setup
setup(
name='codegen',
version = '1.0',
description='Extension to ast that allow ast -> python code generation.',
#author='Armin Ronacher',
#author_email='armin.ronacher@active-4.com',
url='http://github.com/andreif/codegen',
download_url='https://github.com/andreif/codegen/tarball/1.0',
keywords='ast codegen',
platforms='any',
zip_safe=False,
license='BSD',
install_requires = [],
py_modules=['codegen'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|