-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
29 lines (27 loc) · 1.16 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
from setuptools import setup, find_namespace_packages
VERSION="0.1.9"
DESCRIPTION = "meanderpy: a simple model of meandering"
with open("README.md", "r") as f:
long_description_readme = f.read()
setup(
name="meanderpy",
version=VERSION,
author="Zoltan Sylvester",
author_email="[email protected]",
description=DESCRIPTION,
keywords = 'rivers, meandering, geomorphology, stratigraphy',
long_description=long_description_readme,
long_description_content_type="text/markdown",
url="https://github.com/zsylvester/meanderpy",
download_url="https://github.com/zsylvester/meanderpy/archive/refs/tags/v{0}tar.gz".format(VERSION),
packages=find_namespace_packages(include=['meanderpy', 'meanderpy.*']),
install_requires=['numpy','matplotlib', 'scipy','numba','pillow','scikit-image','tqdm'],
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)