File tree Expand file tree Collapse file tree 2 files changed +17
-12
lines changed Expand file tree Collapse file tree 2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,12 @@ timeout: 30
42
42
43
43
Votes are made by using reactions on the top level comment of the Pull Request.
44
44
45
- | Reaction | Vote |
46
- |------------|---------|
47
- | :+1: | Yes |
48
- | :-1: | No |
49
- | :confused: | Abstain |
45
+ | Reaction | Vote |
46
+ |----------|---------|
47
+ |  | Yes |
48
+ |  | No |
49
+ |  | Abstain |
50
+
50
51
51
52
52
53
## Commands
Original file line number Diff line number Diff line change 6
6
7
7
here = path .abspath (path .dirname (__file__ ))
8
8
9
- # Get the long description from the README file
10
- with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
11
- long_description = f .read ()
9
+ try :
10
+ import pypandoc
11
+ long_description = pypandoc .convert ('README.md' , 'rst' )
12
+ except (IOError , ImportError ):
13
+ long_description = open ('README.md' ).read ()
14
+
12
15
13
16
14
17
setup (
34
37
35
38
'Intended Audience :: Developers' ,
36
39
'Intended Audience :: System Administrators' ,
37
- 'Topic :: Software Development :: Version Control'
40
+ 'Topic :: Software Development :: Version Control' ,
38
41
39
42
'Programming Language :: Python :: 3' ,
40
43
'Environment :: Console' ,
41
44
],
42
45
43
46
install_requires = [
44
47
'click>=5.0,<6.0' ,
45
- 'github3.py= =0.9.6,<0.10' ,
48
+ 'github3.py> =0.9.6,<0.10' ,
46
49
'PyYAML>=3.12,<3.13' ,
47
50
'requests>=2.18.0,<2.19' ,
48
51
],
49
52
50
53
extras_require = {
51
54
'dev' : [
52
- 'wheel' ,
53
- 'twine'
55
+ 'pypandoc' ,
56
+ 'twine' ,
57
+ 'wheel'
54
58
],
55
59
},
56
60
You can’t perform that action at this time.
0 commit comments