mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 17:36:51 +00:00
28 lines
737 B
Python
28 lines
737 B
Python
from setuptools import setup, find_packages
|
|
import sys, os
|
|
|
|
setup(name='CementExamplePlugin',
|
|
version='0.1',
|
|
description='Example Plugin for Applications Built on Cement',
|
|
classifiers=[],
|
|
keywords='',
|
|
author='BJ Dierkes',
|
|
author_email='wdierkes@5dollarwhitebox.org',
|
|
url='http://github.com/derks/cement',
|
|
license='GNU GPLv3',
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[
|
|
"ConfigObj",
|
|
"Cement",
|
|
],
|
|
setup_requires=[
|
|
"PasteScript >= 1.7"
|
|
],
|
|
test_suite='nose.collector',
|
|
entry_points="""
|
|
""",
|
|
namespace_packages=['cement', 'cement.plugins'],
|
|
)
|