-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 974 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
# -*- encoding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='dolarpy',
packages=['dolarpy'],
version='0.3.1',
description=('Wrapper for DolarPy, an PYG/USD exchange rate API.'),
author='Marcelo Elizeche Landó',
author_email='melizeche@gmail.com',
url='https://github.com/melizeche/dolarpy-wrapper-python',
license='MIT',
use_2to3=True,
install_requires=required,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial'
]
)