We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fbc904 commit fc52774Copy full SHA for fc52774
MANIFEST
@@ -1,5 +1,5 @@
1
# file GENERATED by distutils, do NOT edit
2
-README
+README.rst
3
setup.py
4
pyvaru/__init__.py
5
pyvaru/rules.py
README renamed to README.rst
setup.py
@@ -1,6 +1,6 @@
from distutils.core import setup
-with open('README', 'r') as readme:
+with open('README.rst', 'r') as readme:
long_description = readme.read()
6
setup(
@@ -36,5 +36,5 @@
36
],
37
keywords='validation rule model data',
38
packages=['pyvaru'],
39
- data_files=[('README', ['README'])],
+ data_files=[('README.rst', ['README.rst'])],
40
)
0 commit comments