FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-escpos/setup.py at master · python-escpos/python-escpos · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-escpos
/
python-escpos
Public
Notifications
You must be signed in to change notification settings
Fork
316
Star
1.3k
Code
Issues
60
Pull requests
12
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-escpos
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
45 lines (33 loc) · 1.09 KB
Breadcrumbs
python-escpos
/
setup.py
Copy path
File metadata and controls
executable file
·
45 lines (33 loc) · 1.09 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
"""Setup script for python package."""
import
os
import
sys
from
setuptools
import
find_packages
,
setup
base_dir
=
os
.
path
.
dirname
(
__file__
)
src_dir
=
os
.
path
.
join
(
base_dir
,
"src"
)
# When executing the setup.py, we need to be able to import ourselves, this
# means that we need to add the src/ directory to the sys.path.
sys
.
path
.
insert
(
0
,
src_dir
)
def
read
(
fname
):
"""Read file from same path as setup.py."""
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
)).
read
()
setuptools_scm_template
=
"""
\
#!/usr/bin/python
# -*- coding: utf-8 -*-
\"
\"
\"
Version identifier.
file generated by setuptools_scm
don't change, don't track in version control
\"
\"
\"
version = '{version}'
"""
setup
(
use_scm_version
=
{
"write_to"
:
"src/escpos/version.py"
,
"write_to_template"
:
setuptools_scm_template
,
},
platforms
=
"any"
,
package_dir
=
{
""
:
"src"
},
packages
=
find_packages
(
where
=
"src"
,
exclude
=
[
"tests"
,
"tests.*"
]),
package_data
=
{
"escpos"
: [
"capabilities.json"
]},
entry_points
=
{
"console_scripts"
: [
"python-escpos = escpos.cli:main"
]},
)
Back
|
FazBrowse Home
|
New Git URL