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 9d68e58 commit fdb0909Copy full SHA for fdb0909
requirements-dev.txt
@@ -0,0 +1,6 @@
1
+# syntax check, unit test, profiling
2
+flake8>=3.8.4
3
+pytest>=6.2.1
4
+twine==3.3.0
5
+pypandoc>=1.5
6
+wheel>=0.31.0
setup.py
@@ -1,16 +1,11 @@
from setuptools import setup
-
-def read(fname):
- import os
- return open(os.path.join(os.path.dirname(__file__), fname)).read()
+import pypandoc
7
8
9
setup(name='numpy-fracdiff',
10
version='0.3.1',
11
description='Fractional Difference for Time Series',
12
- long_description=read('README.md'),
13
- long_description_content_type='text/markdown',
+ long_description=pypandoc.convert('README.md', 'rst'),
14
url='http://github.com/ulf1/numpy-fracdiff',
15
author='Ulf Hamster',
16
author_email='554c46@gmail.com',
0 commit comments