FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-barcode/setup.py at cleanup · patchwright/python-barcode · GitHub
patchwright
/
python-barcode
Public
forked from
WhyNotHugo/python-barcode
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
python-barcode
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
39 lines (37 loc) · 1.37 KB
Breadcrumbs
python-barcode
/
setup.py
Copy path
File metadata and controls
executable file
·
39 lines (37 loc) · 1.37 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
from
pathlib
import
Path
from
setuptools
import
find_packages
,
setup
setup
(
name
=
"python-barcode"
,
packages
=
find_packages
(),
url
=
"https://github.com/WhyNotHugo/python-barcode"
,
license
=
"MIT"
,
author
=
"Hugo Osvaldo Barrera et al"
,
author_email
=
"hugo@barrera.io"
,
description
=
(
"Create standard barcodes with Python. No external modules needed. "
"(optional Pillow support included)."
),
long_description
=
Path
(
"README.rst"
).
read_text
(),
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Environment :: Console"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Topic :: Multimedia :: Graphics"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
],
entry_points
=
{
"console_scripts"
: [
"python-barcode = barcode.pybarcode:main"
,],},
use_scm_version
=
{
"version_scheme"
:
"post-release"
,
"write_to"
:
"barcode/version.py"
,
},
setup_requires
=
[
"setuptools_scm"
],
extras_require
=
{
"images"
: [
"pillow"
]},
include_package_data
=
True
,
)
Back
|
FazBrowse Home
|
New Git URL