Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
onelab
myslicelib
Commits
f4e8543a
Commit
f4e8543a
authored
Mar 31, 2018
by
Loic Baron
Browse files
setup.py updated to publish in pip
parent
0c121207
Pipeline
#2247
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
f4e8543a
# -*- coding: utf-8 -*-
from
setuptools
import
setup
# To use a consistent encoding
from
codecs
import
open
from
os
import
path
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
# Get the long description from the README file
with
open
(
path
.
join
(
here
,
'README.rst'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'myslicelib'
,
version
=
'0.1'
,
description
=
'MySlice Python Library'
,
url
=
''
,
author
=
u
'Ciro Scognamiglio'
,
author_email
=
'ciro.scognamiglio@lip6.fr'
,
version
=
'1.0.1'
,
description
=
'MySlice Library'
,
long_description
=
long_description
,
url
=
'http://gitlab.noc.onelab.eu/onelab/myslicelib'
,
author
=
u
'OneLab'
,
author_email
=
'admin@onelab.eu'
,
license
=
'MIT'
,
packages
=
[
'myslicelib'
],
classifiers
=
[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status ::
3
-
Alpha
'
,
'Development Status ::
5
-
Production/Stable
'
,
# Indicate who your project is intended for
'Intended Audience :: Developers'
,
...
...
@@ -26,9 +37,8 @@ setup(
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
],
keywords
=
'myslice testbed api'
,
#install_requires=[''],
#zip_safe=False,
#include_package_data=True
)
\ No newline at end of file
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment