-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (41 loc) · 1.33 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
Hydropick
=========
Tool for automatic and interactive sediment analysis in hydrological surveys.
"""
import os.path
from setuptools import setup, find_packages
info = {}
execfile(os.path.join('hydropick', '__init__.py'), info)
setup(
name='hydropick',
version=info['__version__'],
url='http://github.com/twdb/hydropick',
author='Dharhas Pothina, Andy Wilson and Enthought developers',
author_email='[email protected]',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules'
],
description='Sediment analysis in hydrological surveys',
long_description = open('README.md').read(),
install_requires=info['__requires__'],
license='BSD',
maintainer='Dharhas Pothina',
maintainer_email='[email protected]',
package_data={
'hydropick': [
'hydropick/ui/tasks/images/24x24/*.png',
]
},
entry_points = {
'gui_scripts': ['hydropick = hydropick.__main__:main',],
},
packages=find_packages(),
platforms=["Windows", "Linux", "Mac OS-X", "Unix"],
zip_safe=False,
)