FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python_GUI_apps/setup.py at lifetime_irf · python-gui-application/Python_GUI_apps · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-gui-application
/
Python_GUI_apps
Public
forked from
SarthakJariwala/Python_GUI_apps
Notifications
You must be signed in to change notification settings
Fork
1
Star
6
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
Python_GUI_apps
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (23 loc) · 773 Bytes
Breadcrumbs
Python_GUI_apps
/
setup.py
Copy path
File metadata and controls
28 lines (23 loc) · 773 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
24
25
26
27
28
import
os
from
setuptools
import
setup
,
find_packages
PACKAGES
=
find_packages
()
# Get version and release info, which is all stored in shablona/version.py
ver_file
=
os
.
path
.
join
(
'PythonGUI_apps'
,
'version.py'
)
with
open
(
ver_file
)
as
f
:
exec
(
f
.
read
())
opts
=
dict
(
name
=
NAME
,
maintainer
=
MAINTAINER
,
maintainer_email
=
MAINTAINER_EMAIL
,
description
=
DESCRIPTION
,
url
=
URL
,
download_url
=
DOWNLOAD_URL
,
license
=
LICENSE
,
classifiers
=
CLASSIFIERS
,
author
=
AUTHOR
,
author_email
=
AUTHOR_EMAIL
,
platforms
=
PLATFORMS
,
version
=
VERSION
,
packages
=
PACKAGES
,
install_requires
=
REQUIRES
)
if
__name__
==
'__main__'
:
setup
(
**
opts
)
Back
|
FazBrowse Home
|
New Git URL