Skip to content

Commit

Permalink
long description added
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravi kumar authored Jan 2, 2018
1 parent e77bf14 commit c506dcf
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
from setuptools import setup, find_packages

VERSION = '0.3.3'
long_description_text = """Forex Python is a Free Foreign exchange rates and currency conversion.
Features:
List all currency rates.
BitCoin price for all curuncies.
Converting amount to BitCoins.
Get historical rates for any day since 1999.
Conversion rate for one currency(ex; USD to INR).
Convert amount from one currency to other.('USD 10$' to INR).
Currency symbols.
Currency names.
Documentation: http://forex-python.readthedocs.io/en/latest/usage.html
GitHub: https://github.com/MicroPyramid/forex-python
"""

setup(
name='forex-python',
Expand All @@ -11,7 +26,7 @@
author_email='[email protected]',
url='https://github.com/MicroPyramid/forex-python',
description='Foreign exchange rates and currency conversion.',
long_description="\n\n".join([open("README.rst", encoding='utf-8').read()]),
long_description=long_description_text,
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
install_requires=[
Expand Down

0 comments on commit c506dcf

Please sign in to comment.