FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-opensource/setup.py at master · OpenSourceOrg/python-opensource · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jun 9, 2026. It is now read-only.
OpenSourceOrg
/
python-opensource
Public archive
Notifications
You must be signed in to change notification settings
Fork
11
Star
21
Code
Issues
1
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-opensource
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (25 loc) · 772 Bytes
Breadcrumbs
python-opensource
/
setup.py
Copy path
File metadata and controls
29 lines (25 loc) · 772 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
from
setuptools
import
setup
long_description
=
"""
API Wrapper to access the Open Source License API
The Open Source API can be found at https://api.opensource.org, and
some (very brief!) documentation can be found in the API server documentation
(https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md).
"""
setup
(
name
=
"opensource"
,
version
=
"1.0.2"
,
packages
=
[
'opensource'
,
'opensource.licenses'
,
],
author
=
"Paul Tagliamonte"
,
author_email
=
"paultag@opensource.org"
,
long_description
=
long_description
,
description
=
"Query the Open Source License API"
,
license
=
"MIT"
,
install_requires
=
[
"requests"
,
],
url
=
"https://github.com/OpenSourceOrg/python-opensource"
,
platforms
=
[
'any'
]
)
Back
|
FazBrowse Home
|
New Git URL