-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.12 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 distutils.core import setup
# FIXME: 3rd party package 'argparse' is required for 2.5
# FIXME: ponder about using brownie instead of a local recipe for using
# namedtuple in 2.5
# -> use distribute
setup(
name='chef',
description='an interpreter for the esoteric programming language Chef',
long_description='',
version='0.1a',
author='Simon Liedtke',
author_email='[email protected]',
url='http://pypi.python.org/pypi/chef',
license='ISC',
packages=[
'chef',
'chef.errors',
'chef.external',
'chef.tests',
],
scripts=['bin/chef'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Interpreters',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7']
)