-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 795 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
from setuptools import find_packages
from setuptools import setup
requires = [
"requests>=2.18.4",
"urwid>=1.3.1",
"urwid-timed-progress==1.1.1",
"pyyaml>=3.12",
"beautifulsoup4==4.6.0",
"feedparser==5.2.1",
]
setup(
name='asx-terminus',
packages=find_packages(
exclude=['tests',]
),
license='Apache 2.0',
version='0.1.6',
description='ASX portfolio in the terminal',
long_description=open('README.md').read(),
author='Nam Ngo',
author_email='namngology@gmail.com',
keywords=[
'asx', 'terminal', 'urwid', 'ncurses',
'australia', 'investment', 'stock'
],
install_requires=requires,
entry_points={
'console_scripts': [
'asxterminus = asxterminus.cli:main'
]
},
)