This repository has been archived by the owner on Aug 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
65 lines (54 loc) · 1.65 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# coding: utf-8
"""setup details for the application"""
from os import path
from codecs import open
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name="exch",
version='0.3',
description='A CLI app to see currency exchange rates.',
long_description=LONG_DESCRIPTION,
url='https://github.com/anshulc95/exch',
author='Anshul Chauhan',
author_email='anshulchauhan@outlook.com',
license='MIT',
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",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Terminals",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='terminal currency utilities',
py_modules=['exch'],
install_requires=[
'click',
'requests',
],
extras_require={
'test':[
'tox',
'pytest',
'coverage'
]
},
packages=['exch'],
package_dir={'exch': 'exch'},
package_data={'exch': ['data/*.json']},
entry_points='''
[console_scripts]
exch=exch.cli:cli
''',
)