File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# encoding: utf-8
3
- from setuptools import setup , find_packages
4
3
5
4
import sys , os
6
5
7
6
import pip
8
7
9
- from setuptools import setup , find_packages , dist
8
+ from setuptools import setup , find_packages
10
9
from setuptools .command .test import test as TestCommand
11
10
from distutils .core import Command
12
11
from distutils .core import setup
@@ -102,7 +101,6 @@ def run_tests(self):
102
101
'pytest' ,
103
102
'pytest-cov' ,
104
103
'pytest-sugar' ,
105
- 'pytest-catchlog' ,
106
104
'pytest-datadir-ng' ,
107
105
'testfixtures' ,
108
106
'mock' ,
@@ -138,10 +136,10 @@ def run_tests(self):
138
136
139
137
setup_requires = [
140
138
'setuptools_scm' ,
141
- 'setuptools-markdown' ,
142
139
'wheel>=0.25.0' ,
143
140
],
144
- long_description_markdown_filename = 'README.md' ,
141
+ long_description = open ('README.md' ).read (),
142
+ long_description_content_type = 'text/markdown' ,
145
143
use_scm_version = {'version_scheme' :'guess-next-dev' },
146
144
include_package_data = True ,
147
145
install_requires = requirements ,
You can’t perform that action at this time.
0 commit comments