File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 102
102
.mypy_cache /
103
103
104
104
.idea /
105
+ .DS_Store
Original file line number Diff line number Diff line change
1
+ from os import path
1
2
from setuptools import setup
2
3
4
+ here = path .abspath (path .dirname (__file__ ))
5
+
6
+ # Get the long description from the README file
7
+ with open (path .join (here , 'README.rst' )) as f :
8
+ long_description = f .read ()
9
+
3
10
setup (
4
11
name = 'httpproblem' ,
5
12
version = '0.1.0' ,
6
13
url = 'https://github.com/cbornet/python-httpproblem' ,
7
14
license = 'MIT' ,
8
15
author = 'Christophe Bornet' ,
9
16
author_email = 'cbornet@hotmail.com' ,
10
- description = 'Utility library to work with RFC7807 Problem Details for HTTP APIs'
17
+ description = 'Utility library to work with RFC7807 Problem Details for HTTP APIs' ,
18
+ long_description = long_description ,
19
+ packages = ['httpproblem' ]
11
20
)
You can’t perform that action at this time.
0 commit comments