-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (37 loc) · 1.14 KB
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
##############################
##############################
from setuptools import setup, find_packages
import glob
import subprocess
from os import path
import io
sys_includes = []
if __name__ == "__main__":
setup(
name="badlands_doe_toolset",
author="Matt Boyd",
author_email="mboyd@sydney.edu.au",
url="https://github.com/GeoMattB",
version="0.1.5",
description="badlands_doe_toolset is a set of tools to help build and analyse Design of Experiment configurations for badlands modelling",
ext_modules = [],
packages=['badlands_doe_toolset'],
package_data={'badlands_doe_toolset':sys_includes},
data_files=[('badlands_doe_toolset',sys_includes)],
include_package_data=True,
install_requires=[
"badlands>=2.2.3",
"badlands-companion",
"similaritymeasures",
"doegen",
"numpy",
"pandas",
"networkx",
"scipy",
"py-cpuinfo"
],
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3.8",
],
)