-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
executable file
·33 lines (29 loc) · 897 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
#!/usr/bin/env python3
# Copyright (c) 2014 Eric Davis
# Licensed under the MIT License
from setuptools import setup
deps = ['urwid', 'requests', 'Simperium3']
setup(
name='sncli',
description='Simplenote Command Line Interface',
version='0.4.2',
author='Eric Davis',
author_email='[email protected]',
url='https://github.com/insanum/sncli',
license='MIT',
requires=deps,
install_requires=deps,
packages=['simplenote_cli'],
entry_points={
'console_scripts': [
'sncli = simplenote_cli.sncli:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
)