forked from andrewschaaf/codegen
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 711 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding=utf-8
from setuptools import setup
setup(
name='codegen',
version = '1.0',
description='Extension to ast that allow ast -> python code generation.',
url='http://github.com/CensoredUsername/codegen',
download_url='https://github.com/CensoredUsername/codegen',
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',
]
)