-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
22 lines (21 loc) · 886 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
import os
from setuptools import setup, find_packages
setup(
name = 'pydorado',
version = '2.5.4',
license = 'MIT',
description = 'dorado - Lagrangian particle routing routine via weighted random walks',
author = 'J. Hariharan, K. Wright, P. Passalacqua',
author_email = '[email protected]',
url = 'https://github.com/passaH2O/dorado',
packages = find_packages(exclude=['*.tests']),
package_data = {'' : ['*.txt', '*.npz']},
long_description = 'See project webpage for details: https://github.com/passaH2O/dorado',
classifiers = [
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14'],
install_requires = ['numpy','matplotlib','scipy',
'future','tqdm'],
)