FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
threadfix-python-api/setup.py at master · userhas404d/threadfix-python-api · GitHub
userhas404d
/
threadfix-python-api
Public
forked from
denimgroup/threadfix-python-api
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
threadfix-python-api
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (15 loc) · 485 Bytes
Breadcrumbs
threadfix-python-api
/
setup.py
Copy path
File metadata and controls
17 lines (15 loc) · 485 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
import
setuptools
from
distutils
.
core
import
setup
# read in the contents of the README file
from
os
import
path
this_directory
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
this_directory
,
'README.rst'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'ThreadFixProAPI'
,
version
=
'1.0.10'
,
packages
=
[
'ThreadFixProApi'
,
'_utils'
,],
license
=
'MIT'
,
long_description
=
long_description
,
long_description_content_type
=
'text/x-rst'
)
Back
|
FazBrowse Home
|
New Git URL