-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 701 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 701 Bytes
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
# ------------------------------------------
# Copyright (c) Rygor. 2021.
# ------------------------------------------
"""Minimal setup file for tasks project."""
from setuptools import setup, find_packages
setup(
name='nb',
version='1.6',
license='MIT',
description="CMD. Info about exchange rates established by the National Bank of the Republic of Belarus",
author='Rygor',
author_email='pisemco@gmail.com',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=['click', 'pandas', 'tabulate', 'pyperclip', 'appdirs'],
entry_points={
'console_scripts': [
'nb = nbrb_by.nbrb_by:cli',
]
},
)