-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (27 loc) · 831 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
from setuptools import setup
import wfw
setup(
name='wfw',
packages=['wfw'],
version='0.3.0',
description='command-line interface for WorkFlowy',
author='Noemi Vanyi',
author_email='sitbackandwait@gmail.com',
url='https://github.com/kvch/wfw',
download_url='https://github.com/kvch/wfw/tarball/0.3.0',
license='GNU General Public License v3',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7'
],
long_description="WorkFlowy command-line tool for people who prefer the terminal.",
install_requires=[
'click',
'requests',
],
entry_points={
'console_scripts' : [
'wfw = wfw.__main__:cli'
],
})