forked from metglobal/openexchangerates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name='openexchangerates3',
version='0.1.1',
description='openexchangerates.org Python3 API client',
long_description=open('README.rst').read(),
url='https://github.com/lihan/openexchangerates3',
license='MIT',
author='Lihan Li',
author_email='[email protected]',
packages=['openexchangerates'],
install_requires=[
'requests',
],
tests_require=[
'httpretty',
'mock'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
],
)