FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-xmlsec/setup.py at master · xmlsec/python-xmlsec · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
xmlsec
/
python-xmlsec
Public
Notifications
You must be signed in to change notification settings
Fork
104
Star
105
Code
Issues
30
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-xmlsec
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (10 loc) · 372 Bytes
Breadcrumbs
python-xmlsec
/
setup.py
Copy path
File metadata and controls
15 lines (10 loc) · 372 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
from
pathlib
import
Path
from
setuptools
import
Extension
,
setup
from
build_support
.
build_ext
import
build_ext
src_root
=
Path
(
__file__
).
parent
/
'src'
sources
=
[
str
(
path
.
relative_to
(
Path
(
__file__
).
parent
))
for
path
in
src_root
.
rglob
(
'*.c'
)]
pyxmlsec
=
Extension
(
'xmlsec'
,
sources
=
sources
)
setup
(
ext_modules
=
[
pyxmlsec
],
cmdclass
=
{
'build_ext'
:
build_ext
},
)
Back
|
FazBrowse Home
|
New Git URL