mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
31 lines
900 B
Python
31 lines
900 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
required = ['httpbin']
|
|
|
|
setup(
|
|
name='haystack',
|
|
version='0.0.1',
|
|
description='Simple API for running external processes.',
|
|
author='Kenneth Reitz',
|
|
author_email='me@kennethreitz.com',
|
|
install_requires=required,
|
|
license='MIT',
|
|
classifiers=(
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Natural Language :: English',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
# 'Programming Language :: Python :: 3.0',
|
|
# 'Programming Language :: Python :: 3.1',
|
|
),
|
|
)
|