Skip to content

Commit ddc9707

Browse files
author
ravi
committed
added setup.py file
1 parent 341b110 commit ddc9707

2 files changed

Lines changed: 37 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# forex-python
1+
# forex-python

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

Comments
 (0)