FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-xlib/setup.py at master · python-xlib/python-xlib · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-xlib
/
python-xlib
Public
Notifications
You must be signed in to change notification settings
Fork
118
Star
463
Code
Issues
66
Pull requests
20
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-xlib
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (18 loc) · 614 Bytes
Breadcrumbs
python-xlib
/
setup.py
Copy path
File metadata and controls
23 lines (18 loc) · 614 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
# Distutils script for python-xlib
from
pkg_resources
import
parse_requirements
from
setuptools
import
(
__version__
as
setuptools_version
,
setup
)
# Check setuptools is recent enough to support `setup.cfg`.
setuptools_require
=
next
(
parse_requirements
(
'setuptools>=30.3.0'
))
assert
setuptools_version
in
setuptools_require
,
'{} is required'
.
format
(
setuptools_require
)
setup
(
install_requires
=
[
'six>=1.10.0'
],
setup_requires
=
[
'setuptools-scm'
],
packages
=
[
'Xlib'
,
'Xlib.ext'
,
'Xlib.keysymdef'
,
'Xlib.protocol'
,
'Xlib.support'
,
'Xlib.xobject'
],
)
Back
|
FazBrowse Home
|
New Git URL