Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110585972
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Apr 27, 00:50
Size
966 B
Mime Type
text/x-python
Expires
Tue, Apr 29, 00:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25815545
Attached To
R11599 sausage-binary
setup.py
View Options
#!/usr/bin/env python
from
setuptools
import
setup
,
find_packages
desc
=
''
with
open
(
'README.rst'
)
as
f
:
desc
=
f
.
read
()
setup
(
name
=
'sausage'
,
scripts
=
[
'sausage'
],
data_files
=
[(
'/etc/sausage'
,
[
'sausage.cfg'
])],
version
=
'0.1.0'
,
description
=
(
'Command-line interface to query the sausage-API service'
),
long_description
=
desc
,
url
=
''
,
author
=
'Antonio J. Russo'
,
author_email
=
'antonio.russo@epfl.ch'
,
license
=
'GPL v3'
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Intended Audience :: System Administrators'
,
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
'Natural Language :: English'
,
'Operating System :: POSIX :: Linux'
,
'Programming Language :: Python :: 3.6'
,
'Topic :: System :: Logging'
],
keywords
=
[
'hpc'
,
'supercomputers'
,
'consumption'
,
'billing'
,
'slurm'
],
packages
=
find_packages
(
exclude
=
[
'docs'
,
'test*'
]),
)
Event Timeline
Log In to Comment