You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 line
692 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="NotePostCLI",
version="0.1",
packages=find_packages(),
install_requires=[
"appdirs>=1.4.3",
"certifi>=2018.1",
"chardet>=3.0",
"decorator>=4.1",
"idna>=2.6",
"python-i18n==0.3.5",
"requests>=2.18.0",
"six>=1.11.0",
"urllib3>=1.22",
"validators==0.12.3"
],
entry_points = {
'console_scripts' : ['notepost = notepostcli.notepost:main']
},
author="Netsyms Technologies",
author_email="opensource@netsyms.com",
license="MPL-2.0",
url="https://source.netsyms.com/Apps/NotePostCLI"
)