Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90366500
new.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
Fri, Nov 1, 00:34
Size
716 B
Mime Type
text/x-python
Expires
Sun, Nov 3, 00:34 (2 d)
Engine
blob
Format
Raw Data
Handle
22062998
Attached To
rGTOOLS Gtools
new.setup.py
View Options
from
setuptools
import
setup
,
find_packages
,
Extension
import
glob
INCDIRS
=
[
'.'
]
setup
(
name
=
"Gtools"
,
version
=
"4.0.0"
,
author
=
"Revaz Yves"
,
author_email
=
"yves.revaz@epfl.ch"
,
url
=
"http://obswww.unige.ch/~revaz/Gtools"
,
description
=
"gadget toolbox"
,
packages
=
find_packages
(),
ext_modules
=
[
Extension
(
"Gtools.cgtools"
,
[
"src/cgtools/cgtools.c"
],
include_dirs
=
INCDIRS
)
],
scripts
=
glob
.
glob
(
'scripts/*'
),
#install_requires = ['numpy>=1.0.3'],
#install_requires = ['matplotlib>=0.91.2'],
dependency_links
=
[
"http://obswww.unige.ch/~revaz/PyPI/"
]
)
Event Timeline
Log In to Comment