Skip to content

Commit 72f5640

Browse files
author
ravi
committed
fixed readme.md error pip install
1 parent 1ef9ffd commit 72f5640

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
include README.rst
2-
include LICENSE

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1+
import os
12
from setuptools import setup, find_packages
23

3-
VERSION = 0.1.1
4+
VERSION = 0.2
45

5-
with open('README.md') as fl:
6-
LONG_DESCRIPTION = fl.read()
6+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
7+
LONG_DESCRIPTION = readme.read()
78

8-
with open('LICENSE') as fl:
9-
LICENSE = fl.read()
109

1110
setup(
1211
name='forex-python',
@@ -16,7 +15,6 @@
1615
url='https://github.com/MicroPyramid/forex-python',
1716
description='Foreign exchange rates and currency conversion.',
1817
long_description=LONG_DESCRIPTION,
19-
license=LICENSE,
2018
packages=find_packages(exclude=['tests', 'tests.*']),
2119
include_package_data=True,
2220
install_requires=[

0 commit comments

Comments
 (0)