-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 836 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from jarvis_cli import __version__
setup(
name = "jarvis-cli",
version = __version__,
packages = find_packages(),
author = "Michael Hwang",
author_email = "hirehwang@gmail.com",
url = "https://clb6.github.io/",
license = "Apache 2.0",
description = ("Jarvis Python command-line tool"),
# Adopted the method of creating bins through setuptools
# http://click.pocoo.org/5/setuptools/#setuptools-integration
# The webpage lists benefits of doing this.
entry_points="""
[console_scripts]
jarvis=jarvis_cli.commands:cli
""",
install_requires=['requests', 'tabulate', 'dateparser<1.0.0', 'click<7.0',
'validators<1.0.0'],
zip_safe = False
)