-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
29 lines (27 loc) · 967 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
from setuptools import setup, find_packages
import exchange
setup(
name='django-exchange',
version=exchange.__version__,
description='currency, exchange rates and conversions support for django',
long_description=open('README.rst').read(),
url='https://github.com/metglobal/django-exchange',
license=exchange.__license__,
author=exchange.__author__,
author_email='[email protected]',
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'openexchangerates'
],
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 :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
)