File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55VERSION = '0.3.3'
6+ long_description_text = """Forex Python is a Free Foreign exchange rates and currency conversion.
7+ Features:
8+ List all currency rates.
9+ BitCoin price for all curuncies.
10+ Converting amount to BitCoins.
11+ Get historical rates for any day since 1999.
12+ Conversion rate for one currency(ex; USD to INR).
13+ Convert amount from one currency to other.('USD 10$' to INR).
14+ Currency symbols.
15+ Currency names.
16+
17+ Documentation: http://forex-python.readthedocs.io/en/latest/usage.html
18+ GitHub: https://github.com/MicroPyramid/forex-python
19+
20+ """
621
722setup (
823 name = 'forex-python' ,
11261227 url = 'https://github.com/MicroPyramid/forex-python' ,
1328 description = 'Foreign exchange rates and currency conversion.' ,
14- long_description = " \n \n " . join ([ open ( "README.rst" , encoding = 'utf-8' ). read ()]) ,
29+ long_description = long_description_text ,
1530 packages = find_packages (exclude = ['tests' , 'tests.*' ]),
1631 include_package_data = True ,
1732 install_requires = [
You can’t perform that action at this time.
0 commit comments