renamed package.

This commit is contained in:
tylerlaberge
2016-09-10 17:11:45 -04:00
parent 52ceb712d4
commit cee2bc400b
39 changed files with 23 additions and 23 deletions

View File

@@ -1,15 +1,15 @@
from distutils.core import setup
setup(
name='pypatterns',
name='pypat',
version='0.1',
description='Python Design Patterns',
author='Tyler LaBerge',
packages=[
'pypatterns',
'pypatterns.creational',
'pypatterns.behavioral',
'pypatterns.structural'
'pypat',
'pypat.creational',
'pypat.behavioral',
'pypat.structural'
],
)