You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup.py
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,12 @@
5
5
version='0.4', # Start with a small number and increase it with every change you make
6
6
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7
7
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'
0 commit comments