File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 11from distutils .core import setup
22
3+
4+ with open ("README.md" , "r" ) as fh :
5+ long_description = fh .read ()
6+
37setup (
48 name = 'randcrack' , # How you named your package folder (MyLib)
59 packages = ['randcrack' ], # Chose the same as "name"
610 version = '0.1.1' , # Start with a small number and increase it with every change you make
711 license = 'MIT' , # Chose a license from here: https://help.github.com/articles/licensing-a-repository
812 description = 'Predict python\' s random module random generated values' ,
13+ long_description = long_description ,
14+ long_description_content_type = "text/markdown" ,
915 author = 'Maxim Kochukov' , # Type in your name
1016 author_email = 'kochukov.ma@gmail.com' , # Type in your E-Mail
1117 url = 'https://github.com/tna0y/Python-random-module-cracker' , # Provide either the link to your github
You can’t perform that action at this time.
0 commit comments