mirror of
https://github.com/fatiando/moulder.git
synced 2025-12-21 02:23:46 +08:00
15 lines
364 B
Python
15 lines
364 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(name='moulder',
|
|
version='draft-01',
|
|
description='Interactive 2D Forward Gravity Modeller',
|
|
author='',
|
|
author_email='',
|
|
url='http://www.fatiando.org',
|
|
packages=find_packages(),
|
|
entry_points={
|
|
'console_scripts': ['moulder=moulder.__init__:main']
|
|
}
|
|
)
|