27 lines
740 B
Python
27 lines
740 B
Python
from setuptools import setup, find_packages
|
|
import sys, os
|
|
|
|
version = '0.1a1'
|
|
|
|
setup(name='crank',
|
|
version=version,
|
|
description="Generalization of dispatch mechanism for use across frameworks.",
|
|
long_description="""\
|
|
""",
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
keywords='',
|
|
author='Christopher Perkins',
|
|
author_email='chris@percious.com',
|
|
url='',
|
|
license='MIT',
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
install_requires=[
|
|
# -*- Extra requirements: -*-
|
|
],
|
|
entry_points="""
|
|
# -*- Entry points: -*-
|
|
""",
|
|
)
|