forked from alexprengere/currencyconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (29 loc) · 878 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
31
32
33
34
35
36
37
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup, find_packages
with open('VERSION') as fl:
VERSION = fl.read().rstrip()
with open('README.rst') as fl:
LONG_DESCRIPTION = fl.read()
with open('LICENSE') as fl:
LICENSE = fl.read()
setup(
name='CurrencyConverter',
version=VERSION,
author='Alex Prengère',
author_email='alexprengere@gmail.com',
url='https://github.com/alexprengere/currencyconverter',
description='A currency converter using the European Central Bank data.',
long_description=LONG_DESCRIPTION,
license=LICENSE,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points={
'console_scripts' : [
'currency_converter=currency_converter.__main__:main'
]
},
)