-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
26 lines (24 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
import setuptools
long_description = """\
'stratigraph' is a Python package for stratigraphic visualization and analysis
"""
setuptools.setup(
name="stratigraph",
version="0.1.2",
author="Zoltan Sylvester",
description="A Python module for stratigraphic visualization and analysis",
keywords = "geology, geoscience, stratigraphy, chronostratigraphy, visualization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zsylvester/stratigraph",
packages=['stratigraph'],
install_requires=["numpy", "scipy", "scikit-learn", "scikit-image",
"shapely", "pillow", "matplotlib", "mayavi", "tqdm"],
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)