File tree Expand file tree Collapse file tree 5 files changed +59
-40
lines changed Expand file tree Collapse file tree 5 files changed +59
-40
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+
2
+ pyclickup
3
+ =========
4
+
5
+
6
+ .. image :: https://badge.fury.io/py/pyclickup.svg
7
+ :target: https://badge.fury.io/py/pyclickup
8
+ :alt: PyPI version
9
+
10
+
11
+ .. image :: https://travis-ci.org/jpetrucciani/pyclickup.svg?branch=master
12
+ :target: https://travis-ci.org/jpetrucciani/pyclickup
13
+ :alt: Build Status
14
+
15
+
16
+ .. image :: https://coveralls.io/repos/github/jpetrucciani/pyclickup/badge.svg?branch=master
17
+ :target: https://coveralls.io/github/jpetrucciani/pyclickup?branch=master
18
+ :alt: Coverage Status
19
+
20
+
21
+ .. image :: https://img.shields.io/badge/code%20style-black-000000.svg
22
+ :target: https://github.com/ambv/black
23
+ :alt: Code style: black
24
+
25
+
26
+ A python wrapper for the ClickUp API
27
+
28
+ Quick start
29
+ -----------
30
+
31
+ Installation
32
+ ^^^^^^^^^^^^
33
+
34
+ .. code-block :: bash
35
+
36
+ # install pyclickup
37
+ pip install pyclickup
38
+
39
+ Basic Usage
40
+ ^^^^^^^^^^^
41
+
42
+ .. code-block :: python
43
+
44
+ from pyclickup import ClickUp
45
+
46
+
47
+ clickup = ClickUp(' $ACCESS_TOKEN' )
48
+
49
+ main_team = clickup.teams[0 ]
50
+ main_space = main_team.spaces[0 ]
51
+ members = main_space.members
52
+
53
+ main_project = main_space.projects[0 ]
54
+ main_list = main_project.lists[0 ]
55
+
56
+ tasks = main_list.get_all_tasks(include_closed = True )
Original file line number Diff line number Diff line change @@ -2,4 +2,3 @@ colorama==0.3.7
2
2
pytest==3.5.1
3
3
pytest-cov==2.5.1
4
4
coveralls==1.5.0
5
- m2r==0.2.0
Original file line number Diff line number Diff line change 3
3
"""
4
4
5
5
6
- __version__ = "0.0.5 "
6
+ __version__ = "0.0.6 "
7
7
8
8
9
9
LIBRARY = "pyclickup"
Original file line number Diff line number Diff line change 4
4
"""
5
5
from pyclickup .globals import __version__ , LIBRARY
6
6
from setuptools import setup , find_packages
7
- from m2r import convert
8
7
9
8
10
- with open ("README.md " ) as readme :
9
+ with open ("README.rst " ) as readme :
11
10
long_description = readme .read ()
12
11
13
12
14
13
setup (
15
14
name = LIBRARY ,
16
15
version = __version__ ,
17
16
description = "A python wrapper for the ClickUp API" ,
18
- long_description = convert ( long_description ) ,
17
+ long_description = long_description ,
19
18
author = "Jacobi Petrucciani" ,
20
19
author_email = "jacobi@mimirhq.com" ,
21
20
keywords = "clickup python" ,
You can’t perform that action at this time.
0 commit comments