forked from kunyavskiy/polygon-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 756 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 756 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
#!/usr/bin/env python3
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='polygon-cli',
version='1.1.11',
packages=['polygon_cli', 'polygon_cli.actions'],
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kunyavskiy/polygon-cli',
license='MIT',
author='Pavel Kunyavskiy',
author_email='kunyavskiy@gmail.com',
description='Commandline tool for polygon',
install_requires=['colorama', 'requests', 'prettytable', 'pyyaml'],
entry_points={
'console_scripts': [
'polygon-cli=polygon_cli:main'
],
}
)