14 lines
309 B
Python
14 lines
309 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='gridlock',
|
|
version='0.1',
|
|
description='Coupled gridding library',
|
|
author='Jan Petykiewicz',
|
|
author_email='anewusername@gmail.com',
|
|
url='https://mpxd.net/gogs/jan/gridlock',
|
|
packages=['gridlock'],
|
|
)
|
|
|