Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-image-creator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-image-creator
Commits
9938a19b
Commit
9938a19b
authored
9 years ago
by
Nikos Skalkotos
Browse files
Options
Downloads
Patches
Plain Diff
Fix small issues in setup.py
* Use absolute path when opening README.md * Fix a pep8 issue
parent
c3e5d47e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+6
-3
6 additions, 3 deletions
setup.py
with
6 additions
and
3 deletions
setup.py
+
6
−
3
View file @
9938a19b
#!/usr/bin/env python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
#
#
# Copyright (C) 2011-201
4
GRNET S.A.
# Copyright (C) 2011-201
5
GRNET S.A.
#
#
# This program is free software: you can redistribute it and/or modify
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
...
@@ -17,14 +17,17 @@
...
@@ -17,14 +17,17 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
image_creator
import
image_creator
from
os.path
import
dirname
,
abspath
,
join
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
README
=
join
(
dirname
(
abspath
(
__file__
)),
'
README.md
'
)
setup
(
setup
(
name
=
'
snf_image_creator
'
,
name
=
'
snf_image_creator
'
,
version
=
image_creator
.
__version__
,
version
=
image_creator
.
__version__
,
description
=
'
Command line tool for creating images
'
,
description
=
'
Command line tool for creating images
'
,
long_description
=
open
(
'
README
.md
'
).
read
(),
long_description
=
open
(
README
).
read
(),
url
=
'
https://github.com/grnet/snf-image
'
,
url
=
'
https://github.com/grnet/snf-image
'
,
download_url
=
'
https://pypi.python.org/pypi/snf_image_creator
'
,
download_url
=
'
https://pypi.python.org/pypi/snf_image_creator
'
,
author
=
'
Synnefo development team
'
,
author
=
'
Synnefo development team
'
,
...
@@ -52,6 +55,6 @@ setup(
...
@@ -52,6 +55,6 @@ setup(
'
Operating System :: POSIX :: Linux
'
,
'
Operating System :: POSIX :: Linux
'
,
'
Programming Language :: Python :: 2.6
'
,
'
Programming Language :: Python :: 2.6
'
,
'
Programming Language :: Python :: 2.7
'
],
'
Programming Language :: Python :: 2.7
'
],
keywords
=
'
cloud IaaS OS images
'
keywords
=
'
cloud IaaS OS images
'
)
)
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment