-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
24 lines (23 loc) · 975 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
import os
from setuptools import setup, find_packages
setup(
name = 'pydorado',
version = '2.5.3',
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 :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'],
install_requires = ['numpy','matplotlib','scipy',
'future','tqdm'],
)