Skip to content

Commit ca025cf

Browse files
committed
CI - separate dev requirements
1 parent d79fe67 commit ca025cf

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

requirements.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
pkginfo==1.2.1
21
PyHamcrest==1.8.5
3-
pypandoc==1.1.2
42
requests==2.8.1
5-
requests-toolbelt==0.5.0
63
six==1.10.0
7-
twine==1.6.4
84
unittest-data-provider==1.0.1
9-
wheel==0.24.0

requirements_dev.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pkginfo==1.2.1
2+
pypandoc==1.1.2
3+
requests-toolbelt==0.5.0
4+
twine==1.6.4
5+
wheel==0.24.0

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
from setuptools import setup
2-
3-
try:
4-
from pypandoc import convert
5-
long_description = convert('README.md', 'rst')
6-
except ImportError:
7-
long_description = open('README.md').read()
2+
from pypandoc import convert
83

94
setup(
105
name='gopay',
116
version='1.0.0',
127
description='GoPay\'s Python SDK for Payments REST API',
13-
long_description=long_description,
8+
long_description=convert('README.md', 'rst'),
149
url='https://github.com/gopaycommunity/gopay-python-sdk',
1510
author='GoPay',
1611
author_email='[email protected]',

0 commit comments

Comments
 (0)