Skip to content

Commit f278f79

Browse files
committed
Updated long description in setup.py
1 parent 0268c48 commit f278f79

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
version = '0.4', # Start with a small number and increase it with every change you make
66
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'Module to increase encapsulation in Python, not allowing the access to private members outside their classes', # Give a short description about your library
8-
long_description = 'Module to increase encapsulation in Python, not allowing the access to private members outside their classes',
8+
long_description = 'Module to increase encapsulation in Python, not allowing the access to private members outside their classes\n'
9+
'We offer a decorator that we can use to decorate a class for this purpose. We only have to include'
10+
'the parameters we want to make private and if we want to allow for deep copies of objects of this class\n'
11+
'@private_attributes_decorator.private_attributes_dec("arg1",allow_deep_copy=True)\n'
12+
'That way we won´t be able to get or set any our already private attributes plus the attribute arg1.'
13+
'However, we will allow for deep copies of objects of that class',
914
author = 'Antonio Pérez', # Type in your name
1015
author_email = 'ingovanpe@gmail.com', # Type in your E-Mail
1116
url = 'https://github.com/AntoData', # Provide either the link to your github or to your website

0 commit comments

Comments
 (0)