taskwarrior-grocy/setup.py

33 lines
937 B
Python
Raw Normal View History

2018-12-02 15:59:42 -06:00
import os
from setuptools import setup
f = open('README.rst')
long_description = f.read().strip()
long_description = long_description.split('readme', 1)[1]
f.close()
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "taskwarrior-services",
2018-12-02 15:59:42 -06:00
version = "0.0.1",
author = "Aerex",
2018-12-02 15:59:42 -06:00
author_email = "aerex@aerex.me",
description = ("A plugin to create, delete, and modify tasks across various services "),
2018-12-02 15:59:42 -06:00
keywords = "taskwarrior, grocy",
url = "http://packages.python.org/an_example_pypi_project",
packages=['requests', 'pyyaml', 'taskw', 'pytz', 'click'],
install_requires=['Click'],
2018-12-02 15:59:42 -06:00
long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
entry_points="
[console_scripts]
twservices = cli:main
2018-12-02 15:59:42 -06:00
)