Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4441
setup.py
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
setup.py
View Options
import
setuptools
def
run
():
setuptools
.
setup
(
name
=
'appscii'
,
version
=
findversion
(
'.'
,
'appscii'
),
author
=
'LANNOCC (Shawn A. Wilson)'
,
author_email
=
'lannocc@yahoo.com'
,
url
=
'https://github.com/lannocc/appscii'
,
packages
=
setuptools
.
find_packages
(),
description
=
'Application in ASCII for Python'
,
long_description_content_type
=
'text/markdown'
,
long_description
=
open
(
'README.md'
)
.
read
(),
classifiers
=
[
"Programming Language :: Python :: 3"
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: OS Independent"
,
],
install_requires
=
[
],
)
def
findversion
(
root
,
name
):
'''versioning strategy taken from
http://stackoverflow.com/a/7071358/7203060'''
import
re
from
os.path
import
join
vfile
=
join
(
root
,
name
,
"__version__.py"
)
vmatch
=
re
.
search
(
r'^__version__ *= *["\']([^"\']*)["\']'
,
open
(
vfile
,
"rt"
)
.
read
(),
re
.
M
)
if
vmatch
:
version
=
vmatch
.
group
(
1
)
print
(
"Found
%s
version
%s
"
%
(
name
,
version
))
return
version
else
:
raise
RuntimeError
(
"Expecting a version string in
%s
."
%
(
vfile
))
if
__name__
==
'__main__'
:
run
()
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Sep 14, 11:50 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3656
Default Alt Text
setup.py (1 KB)
Attached To
Mode
rAPPSCII Terminal Framework
Attached
Detach File
Event Timeline
Log In to Comment