forked from skachuck/giapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (25 loc) · 877 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(name='giapy',
version='1.0.0',
description='Compute glacial isostacy in python',
long_description=""" """,
url='http://github.com/skachuck/giapy/',
author='Samuel B Kachuck',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python 2',
'Programming Language :: Python 3',
'Topic :: Scientific/Engineering :: Physics'
],
keywords='geophysics deformation isostasy',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': ['giapy-ellove=giapy.command_line:ellove',
'giapy-velove=giapy.command_line:velove'],
},
)