forked from huwwp/cryptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 783 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='cryptop',
version='0.1.6',
description='Command line Cryptocurrency Portfolio',
long_description=readme,
author='huwwp',
author_email='[email protected]',
url='https://github.com/huwwp/cryptop',
license='MIT',
keywords='crypto cli portfolio curses cryptocurrency bitcoin',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
install_requires=['requests', 'requests_cache'],
package_data={'cryptop': ['config.ini']},
entry_points = {
'console_scripts': ['cryptop = cryptop.cryptop:main'],
}
)