|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +VERSION = 0.9 |
| 4 | + |
| 5 | +with open('README.md') as fl: |
| 6 | + LONG_DESCRIPTION = fl.read() |
| 7 | + |
| 8 | +with open('LICENSE') as fl: |
| 9 | + LICENSE = fl.read() |
| 10 | + |
| 11 | +setup( |
| 12 | + name='forex-python', |
| 13 | + version=VERSION, |
| 14 | + author='Micro Pyramid Informatic Pvt. Ltd.', |
| 15 | + author_email='hello@micropyramid.com', |
| 16 | + url='https://github.com/MicroPyramid/forex-python', |
| 17 | + description='A currency rates and converter using the http://fixer.io/ API.', |
| 18 | + long_description=LONG_DESCRIPTION, |
| 19 | + license=LICENSE, |
| 20 | + packages=find_packages(exclude=['tests', 'tests.*']), |
| 21 | + include_package_data=True, |
| 22 | + install_requires=[ |
| 23 | + 'requests', |
| 24 | + ], |
| 25 | + classifiers=[ |
| 26 | + 'Intended Audience :: Developers', |
| 27 | + 'Operating System :: OS Independent', |
| 28 | + 'License :: OSI Approved :: MIT License', |
| 29 | + 'Programming Language :: Python', |
| 30 | + 'Programming Language :: Python :: 2.7', |
| 31 | + 'Programming Language :: Python :: 3', |
| 32 | + 'Programming Language :: Python :: 3.2', |
| 33 | + 'Programming Language :: Python :: 3.3', |
| 34 | + 'Programming Language :: Python :: 3.4', |
| 35 | + ], |
| 36 | +) |
0 commit comments