Browse Source

Merge branch 'develop' of github.com:algoo/hapic into develop

Bastien Sevajol 5 years ago
parent
commit
fd06aa5acd
2 changed files with 7 additions and 4 deletions
  1. 1 1
      hapic/infos.py
  2. 6 3
      setup.py

+ 1 - 1
hapic/infos.py View File

1
 # -*- coding: utf-8 -*-
1
 # -*- coding: utf-8 -*-
2
-__version__ = '0.41'
2
+__version__ = '0.43'

+ 6 - 3
setup.py View File

39
 if sys.version_info.major == 3 and sys.version_info.minor == 4:
39
 if sys.version_info.major == 3 and sys.version_info.minor == 4:
40
     install_requires.append('typing')
40
     install_requires.append('typing')
41
 
41
 
42
+with open('README.md', 'r') as readme_file:
43
+    long_description = readme_file.read()
44
+
42
 setup(
45
 setup(
43
     name='hapic',
46
     name='hapic',
44
 
47
 
47
     # https://packaging.python.org/en/latest/single_source_version.html
50
     # https://packaging.python.org/en/latest/single_source_version.html
48
     version=version,
51
     version=version,
49
     description='HTTP api input/output manager',
52
     description='HTTP api input/output manager',
50
-    # long_description=long_description,
51
-    long_description='',
53
+    long_description=long_description,
54
+    long_description_content_type='text/markdown',
52
 
55
 
53
     # The project's main homepage.
56
     # The project's main homepage.
54
     url='https://github.com/algoo/hapic',
57
     url='https://github.com/algoo/hapic',
58
     author_email='contact@algoo.fr',
61
     author_email='contact@algoo.fr',
59
 
62
 
60
     # Choose your license
63
     # Choose your license
61
-    license='',
64
+    license='MIT',
62
 
65
 
63
     # What does your project relate to?
66
     # What does your project relate to?
64
     keywords='http api validation',
67
     keywords='http api validation',