FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pywebpush/setup.py at master · sweshgit/pywebpush · GitHub
sweshgit
/
pywebpush
Public
forked from
web-push-libs/pywebpush
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pywebpush
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
61 lines (54 loc) · 1.79 KB
Breadcrumbs
pywebpush
/
setup.py
Copy path
File metadata and controls
61 lines (54 loc) · 1.79 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import
io
import
os
from
setuptools
import
find_packages
,
setup
__version__
=
"1.7.0"
def
read_from
(
file
):
reply
=
[]
with
io
.
open
(
os
.
path
.
join
(
here
,
file
),
encoding
=
'utf8'
)
as
f
:
for
l
in
f
:
l
=
l
.
strip
()
if
not
l
:
break
if
l
[:
2
]
==
'-r'
:
reply
+=
read_from
(
l
.
split
(
' '
)[
1
])
continue
if
l
[
0
]
!=
'#'
or
l
[:
2
]
!=
'//'
:
reply
.
append
(
l
)
return
reply
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
with
io
.
open
(
os
.
path
.
join
(
here
,
'README.rst'
),
encoding
=
'utf8'
)
as
f
:
README
=
f
.
read
()
with
io
.
open
(
os
.
path
.
join
(
here
,
'CHANGELOG.md'
),
encoding
=
'utf8'
)
as
f
:
CHANGES
=
f
.
read
()
setup
(
name
=
"pywebpush"
,
version
=
__version__
,
packages
=
find_packages
(),
description
=
'WebPush publication library'
,
long_description
=
README
+
'
\n
\n
'
+
CHANGES
,
classifiers
=
[
"Topic :: Internet :: WWW/HTTP"
,
"Programming Language :: Python :: Implementation :: PyPy"
,
'Programming Language :: Python'
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
],
keywords
=
'push webpush publication'
,
author
=
"JR Conlin"
,
author_email
=
"src+webpusher@jrconlin.com"
,
url
=
'https://github.com/web-push-libs/pywebpush'
,
license
=
"MPL2"
,
test_suite
=
"nose.collector"
,
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
read_from
(
'requirements.txt'
),
tests_require
=
read_from
(
'test-requirements.txt'
),
entry_points
=
"""
[console_scripts]
pywebpush = pywebpush.__main__:main
"""
,
)
Back
|
FazBrowse Home
|
New Git URL