forked from serapeum-org/Hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 678 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup , find_packages
setup(
name='Hapi',
packages=['Hapi'],
version='0.1.0',
description='Distributed Hydrological model',
author='Mostafa Farrag',
author_email='moah.farag@gmail.come',
url='https://github.com/MAfarrag/HAPI',
keywords=['Hydrology', 'Distributed hydrological model'],
License="MIT" ,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
]
)