FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vcs/_4.python/__code/__tmp_code/setup.py at master · bunshue/vcs · GitHub
bunshue
/
vcs
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
3
Code
Issues
0
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
vcs
/
_4.python
/
__code
/
__tmp_code
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (21 loc) · 707 Bytes
Breadcrumbs
vcs
/
_4.python
/
__code
/
__tmp_code
/
setup.py
Copy path
File metadata and controls
23 lines (21 loc) · 707 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
import
setuptools
from
os
import
path
this_directory
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
this_directory
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setuptools
.
setup
(
name
=
'invoiceTW'
,
version
=
'0.1.0'
,
author
=
'jeng'
,
author_email
=
'tsjeng45@yahoo.com.tw'
,
description
=
'Taiwan invoice number'
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
url
=
'https://github.com/tsjeng45/invoiceTW'
,
packages
=
setuptools
.
find_packages
(),
keywords
=
[
'invoice'
],
classifiers
=
[
"Programming Language :: Python :: 3"
,
"License :: OSI Approved :: MIT License"
,
],
)
Back
|
FazBrowse Home
|
New Git URL