Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96018586
___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
Sat, Dec 21, 19:12
Size
1 KB
Mime Type
text/x-python
Expires
Mon, Dec 23, 19:12 (2 d)
Engine
blob
Format
Raw Data
Handle
23101662
Attached To
R1692 code_skeleton
___setup_py__
View Options
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
@file setup.py
@author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
@brief This is the setup script for the code_skeleton
python package. It allows to run the package's unit tests,
build its sphinx documentation and install it.
@section LICENCE
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
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from
setuptools
import
setup
setup
(
name
=
"code_skeleton"
,
packages
=
[
'code_skeleton'
],
version
=
"0.0.1"
,
author
=
"Guillaume Anciaux"
,
author_email
=
"guillaume.anciaux@epfl.ch"
,
description
=
(
"Code classes solution and Code generator"
),
scripts
=
[
'scripts/class_dumper_dot.py'
,
'scripts/class_dumper_cpp.py'
,
'scripts/class_dumper_python.py'
],
test_suite
=
"tests"
,
license
=
"""
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
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
)
Event Timeline
Log In to Comment