1
1
#!/usr/bin/env python
2
- # -*- coding: utf-8 -*-
3
2
3
+ import codecs
4
4
import os
5
5
import re
6
6
import sys
7
- import codecs
8
7
9
8
import setuptools
10
9
import setuptools .command .test
@@ -18,7 +17,7 @@ def _pyimp():
18
17
19
18
NAME = 'django_celery_results'
20
19
21
- E_UNSUPPORTED_PYTHON = '%s 1.0 requires %% s %% s or later!' % ( NAME ,)
20
+ E_UNSUPPORTED_PYTHON = f' { NAME } 1.0 requires %s %s or later!'
22
21
23
22
PYIMP = _pyimp ()
24
23
PY36_OR_LESS = sys .version_info < (3 , 6 )
@@ -65,6 +64,7 @@ def add_default(m):
65
64
def add_doc (m ):
66
65
return (('doc' , m .groups ()[0 ]),)
67
66
67
+
68
68
pats = {re_meta : add_default ,
69
69
re_doc : add_doc }
70
70
here = os .path .abspath (os .path .dirname (__file__ ))
@@ -81,8 +81,8 @@ def add_doc(m):
81
81
# -*- Installation Requires -*-
82
82
83
83
84
- def strip_comments (l ):
85
- return l .split ('#' , 1 )[0 ].strip ()
84
+ def strip_comments (line ):
85
+ return line .split ('#' , 1 )[0 ].strip ()
86
86
87
87
88
88
def _pip_requirement (req ):
@@ -93,22 +93,24 @@ def _pip_requirement(req):
93
93
94
94
95
95
def _reqs (* f ):
96
- return [
97
- _pip_requirement (r ) for r in (
98
- strip_comments (l ) for l in open (
99
- os .path .join (os .getcwd (), 'requirements' , * f )).readlines ()
100
- ) if r ]
96
+ with open (os .path .join (os .getcwd (), 'requirements' , * f )) as fp :
97
+ return [
98
+ _pip_requirement (r )
99
+ for r in (strip_comments (line ) for line in fp )
100
+ if r
101
+ ]
101
102
102
103
103
104
def reqs (* f ):
104
105
return [req for subreq in _reqs (* f ) for req in subreq ]
105
106
106
107
# -*- Long Description -*-
107
108
109
+
108
110
if os .path .exists ('README.rst' ):
109
111
long_description = codecs .open ('README.rst' , 'r' , 'utf-8' ).read ()
110
112
else :
111
- long_description = 'See http://pypi.python.org/pypi/%s' % ( NAME ,)
113
+ long_description = f 'See http://pypi.python.org/pypi/{ NAME } '
112
114
113
115
# -*- %%% -*-
114
116
@@ -124,6 +126,7 @@ def run_tests(self):
124
126
import pytest
125
127
sys .exit (pytest .main (self .pytest_args ))
126
128
129
+
127
130
setuptools .setup (
128
131
name = NAME ,
129
132
packages = setuptools .find_packages (exclude = ['ez_setup' , 't' , 't.*' ]),
0 commit comments