-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 967 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
25
26
27
28
29
# setup.py for gempy_viewer. Requierements are numpy and matplotlib
from os import path
from setuptools import setup, find_packages
setup(
name='gempy_plugins',
packages=find_packages(),
url='',
license='EUPL-1.2',
author='Miguel de la Varga',
author_email="[email protected]",
description='Extra plugins for the geological modeling package GemPy',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: GIS',
'Programming Language :: Python :: 3.10'
],
python_requires='>=3.10',
setup_requires=['setuptools_scm'],
use_scm_version={
"root" : ".",
"relative_to" : __file__,
"write_to" : path.join("gempy_plugins", "_version.py"),
"fallback_version": "3.0.0"
},
)