No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
5434b74
... +0 ...
393fe80
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
5 | 5 | from setuptools import setup, find_packages |
|
6 | 6 | import re |
|
7 | 7 | ||
8 | - | with open('README.md', 'rb') as f: |
|
8 | + | with open('README.rst', 'rb') as f: |
|
9 | 9 | install = f.read().decode('utf-8') |
|
10 | 10 | ||
11 | 11 | with open('CHANGELOG.rst', 'rb') as f: |
|
12 | 12 | changelog = f.read().decode('utf-8') |
|
13 | 13 | ||
14 | - | with open('README.md', 'rb') as f: |
|
14 | + | with open('README.rst', 'rb') as f: |
|
15 | 15 | readme = f.read().decode('utf-8') |
|
16 | 16 | ||
17 | 17 | classifiers = [ |
39 | 39 | author_email='steffen.meinecke@uni-kassel.de', |
|
40 | 40 | description='Electrical Power System Benchmark Models', |
|
41 | 41 | long_description=readme, |
|
42 | - | long_description_content_type="text/markdown", |
|
42 | + | long_description_content_type="text/x-rst", |
|
43 | 43 | url='http://www.simbench.de/en', |
|
44 | 44 | license='odbl', |
|
45 | 45 | install_requires=["pandapower>=2.5"], |
393fe80
5434b74