-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 817 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 817 Bytes
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
from setuptools import find_packages, setup
setup(
name="GeoGen",
version="0.1.0",
description="A package for creating, visualizing, and exporting 3D structural geology models. \
Allows either user specified, or randomized generation of models.",
packages=find_packages(where="src"), # Look for packages in the 'src' directory
package_dir={"": "src"}, # Root package directory is 'src'
install_requires=[
"numpy",
"scipy",
"matplotlib",
"pyvista[all]",
"pyvistaqt",
"ipywidgets",
"ipykernel",
"trame",
"trame-vuetify",
"trame-vtk",
"tqdm",
"PyDTMC",
],
package_data={
"geogen.generation.markov_matrix": ["default_markov_matrix.csv"],
},
include_package_data=True,
)