You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gridlock/setup.py

28 lines
684 B
Python

8 years ago
#!/usr/bin/env python
from distutils.core import setup
setup(name='gridlock',
8 years ago
version='0.1',
description='Coupled gridding library',
8 years ago
author='Jan Petykiewicz',
author_email='anewusername@gmail.com',
url='https://mpxd.net/gogs/jan/gridlock',
packages=['gridlock'],
install_requires=[
'numpy'
],
dependency_links=[
'git+https://mpxd.net/gogs/jan/float_raster.git@release'
],
extras_require={
'visualization': ['matplotlib'],
'visualization-isosurface': [
'matplotlib',
'skimage',
'mpl_toolkits',
],
},
)
8 years ago