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 11#!/usr/bin/env python3
22# encoding: utf-8
3- from setuptools import setup , find_packages
43
54import sys , os
65
76import pip
87
9- from setuptools import setup , find_packages , dist
8+ from setuptools import setup , find_packages
109from setuptools .command .test import test as TestCommand
1110from distutils .core import Command
1211from distutils .core import setup
@@ -102,7 +101,6 @@ def run_tests(self):
102101 'pytest' ,
103102 'pytest-cov' ,
104103 'pytest-sugar' ,
105- 'pytest-catchlog' ,
106104 'pytest-datadir-ng' ,
107105 'testfixtures' ,
108106 'mock' ,
@@ -138,10 +136,10 @@ def run_tests(self):
138136139137 setup_requires = [
140138 'setuptools_scm' ,
141- 'setuptools-markdown' ,
142139 'wheel>=0.25.0' ,
143140 ],
144- long_description_markdown_filename = 'README.md' ,
141+ long_description = open ('README.md' ).read (),
142+ long_description_content_type = 'text/markdown' ,
145143 use_scm_version = {'version_scheme' :'guess-next-dev' },
146144 include_package_data = True ,
147145 install_requires = requirements ,
You can’t perform that action at this time.
0 commit comments