Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
215ea5ba
Commit
215ea5ba
authored
May 15, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up package description in setup.py a little and fix indentation
parent
cf8e1989
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
45 deletions
+43
-45
setup.py
setup.py
+43
-45
No files found.
setup.py
View file @
215ea5ba
...
...
@@ -6,6 +6,7 @@ except ImportError:
import
os
import
stat
import
subprocess
import
textwrap
import
sys
import
platform
...
...
@@ -313,48 +314,45 @@ if include_debugger:
setup_args
[
'package_data'
][
'Cython.Debugger.Tests'
]
=
[
'codefile'
,
'cfuncs.c'
]
setup
(
name
=
'Cython'
,
version
=
version
,
url
=
'http://www.cython.org'
,
author
=
'Robert Bradshaw, Stefan Behnel, Dag Seljebotn, Greg Ewing, et al.'
,
author_email
=
'cython-devel@python.org'
,
description
=
"The Cython compiler for writing C extensions for the Python language."
,
long_description
=
"""
\
The Cython language makes writing C extensions for the Python language as
easy as Python itself. Cython is a source code translator based on the
well-known Pyrex_, but supports more cutting edge functionality and
optimizations.
The Cython language is very close to the Python language (and most Python
code is also valid Cython code), but Cython additionally supports calling C
functions and declaring C types on variables and class attributes. This
allows the compiler to generate very efficient C code from Cython code.
This makes Cython the ideal language for writing glue code for external C
libraries, and for fast C modules that speed up the execution of Python
code.
.. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
"""
,
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: Apache Software License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: C"
,
"Programming Language :: Cython"
,
"Topic :: Software Development :: Code Generators"
,
"Topic :: Software Development :: Compilers"
,
"Topic :: Software Development :: Libraries :: Python Modules"
],
scripts
=
scripts
,
packages
=
packages
,
py_modules
=
[
"cython"
],
**
setup_args
)
name
=
'Cython'
,
version
=
version
,
url
=
'http://www.cython.org'
,
author
=
'Robert Bradshaw, Stefan Behnel, Dag Seljebotn, Greg Ewing, et al.'
,
author_email
=
'cython-devel@python.org'
,
description
=
"The Cython compiler for writing C extensions for the Python language."
,
long_description
=
textwrap
.
dedent
(
"""
\
The Cython language makes writing C extensions for the Python language as
easy as Python itself. Cython is a source code translator based on Pyrex_,
but supports more cutting edge functionality and optimizations.
The Cython language is very close to the Python language (and most Python
code is also valid Cython code), but Cython additionally supports calling C
functions and declaring C types on variables and class attributes. This
allows the compiler to generate very efficient C code from Cython code.
This makes Cython the ideal language for writing glue code for external C
libraries, and for fast C modules that speed up the execution of Python
code.
.. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
"""
),
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: Apache Software License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: C"
,
"Programming Language :: Cython"
,
"Topic :: Software Development :: Code Generators"
,
"Topic :: Software Development :: Compilers"
,
"Topic :: Software Development :: Libraries :: Python Modules"
],
scripts
=
scripts
,
packages
=
packages
,
py_modules
=
[
"cython"
],
**
setup_args
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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