Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98664576
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
Wed, Jan 15, 10:35
Size
1 KB
Mime Type
text/x-python
Expires
Fri, Jan 17, 10:35 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23623147
Attached To
R3683 Slides
setup.py
View Options
from
setuptools
import
setup
,
find_packages
from
sphinx.setup_command
import
BuildDoc
name
=
'slides'
version
=
'1.0'
release
=
'1.0.0'
setup
(
name
=
name
,
packages
=
find_packages
(),
version
=
"0.0.1"
,
author
=
"Guillaume Anciaux"
,
author_email
=
"guillaume.anciaux@epfl.ch"
,
description
=
(
"Slides making/convertion tools"
),
install_require
=
[
"sphinx"
],
tests_require
=
[
"pytest"
],
setup_requires
=
[
"pytest-runner"
],
test_suite
=
"tests"
,
cmdclass
=
{
'doc'
:
BuildDoc
},
command_options
=
{
'doc'
:
{
'project'
:
(
'setup.py'
,
name
),
'version'
:
(
'setup.py'
,
version
),
'release'
:
(
'setup.py'
,
release
),
'source_dir'
:
(
'setup.py'
,
'doc'
)}},
scripts
=
[
'scripts/slides'
,
'scripts/pLatex'
],
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