You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
from setuptools import setup
|
|
|
|
with open('requirements.txt') as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name='wf',
|
|
packages=['wf'],
|
|
install_requires=requirements,
|
|
description='A command line interface for using WorkFlowy.',
|
|
author='Gregory Leeman',
|
|
author_email='[email protected]',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'wf = wf.script:cli'
|
|
],
|
|
},
|
|
)
|
|
|