FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-gogs-client/setup.py at develop · codired/python-gogs-client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codired
/
python-gogs-client
Public
forked from
unfoldingWord-dev/python-gitea-client
Notifications
You must be signed in to change notification settings
Fork
1
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
python-gogs-client
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (28 loc) · 997 Bytes
Breadcrumbs
python-gogs-client
/
setup.py
Copy path
File metadata and controls
32 lines (28 loc) · 997 Bytes
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
from
setuptools
import
setup
,
find_packages
from
codecs
import
open
from
os
import
path
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
here
,
"README.rst"
),
"r"
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
"gogs_client"
,
version
=
"1.0.3"
,
description
=
"A python library for interacting with a gogs server"
,
long_description
=
long_description
,
url
=
"https://github.com/unfoldingWord-dev/python-gogs-client"
,
author
=
"unfoldingWord"
,
author_email
=
"ethantkoenig@gmail.com"
,
license
=
"MIT"
,
classifiers
=
[
"License :: OSI Approved :: MIT License"
,
"Programming Language :: Python :: 2.7"
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
],
keywords
=
[
"gogs"
,
"http"
,
"client"
],
packages
=
find_packages
(),
install_requires
=
[
"future"
,
"requests"
],
test_suite
=
"tests"
)
Back
|
FazBrowse Home
|
New Git URL