您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
NotePostCLI/setup.py

28 行
718 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="NotePostCLI",
version="0.1.3",
packages=find_packages(),
install_requires=[
"appdirs>=1.4.3",
"certifi>=2018.1",
"chardet>=3.0",
"decorator>=4.1",
"idna>=2.6",
"requests>=2.18.0",
"six>=1.10.0",
"urllib3>=1.22"
],
entry_points = {
'console_scripts' : ['notepostcli = notepostcli.notepost:main']
},
author="Netsyms Technologies",
author_email="opensource@netsyms.com",
license="MPL-2.0",
url="https://source.netsyms.com/Apps/NotePostCLI",
description="A simple terminal app for NotePost, an online notetaking app."
)