-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ravi kumar
authored
Jan 2, 2018
1 parent
e77bf14
commit c506dcf
Showing
1 changed file
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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=[ | ||
|