21 lines
569 B
Python
21 lines
569 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='pypattyrn',
|
|
version='1.2',
|
|
description='Design Pattern Templates for Python',
|
|
author='Tyler LaBerge',
|
|
author_email='tyler.laberge@maine.edu',
|
|
url='https://github.com/tylerlaberge/PyPattyrn',
|
|
download_url='https://github.com/tylerlaberge/PyPattyrn/tarball/v1.2',
|
|
keywords=['design', 'pattern', 'patterns', 'pattyrn', 'template'],
|
|
classifiers=[],
|
|
packages=[
|
|
'pypattyrn',
|
|
'pypattyrn.creational',
|
|
'pypattyrn.behavioral',
|
|
'pypattyrn.structural'
|
|
],
|
|
)
|
|
|