-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 919 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
36
from setuptools import setup
setup(
name="pecli",
version="0.0.1",
description="A CLI tool to check, register and cancel PE class in SFC",
url="https://github.com/kakugirai/PEbot-utils",
author="Girai Kaku",
author_email="kakugirai@gmail.com",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
py_modules=[
"pecli",
"botcore",
],
install_requires=[
"click",
"inquirer",
"pyvirtualdisplay",
"lxml",
"selenium",
"beautifulsoup4",
"tabulate",
],
entry_points='''
[console_scripts]
pecli=pecli:cli
''',
)