-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (23 loc) · 1.18 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="latin-1") as f:
description = f.read()
setup(
name="gebpy",
version="1.0.7",
packages=find_packages(),
url="https://github.com/MABeeskow/GebPy",
license="LGPL-3.0",
author="Maximilian Alexander Beeskow",
author_email="[email protected]",
description="GebPy is a Python-based, open source tool for the generation of geological data of minerals, rocks "
"and complete lithological sequences. The data can be generated randomly or with respect to "
"user-defined constraints, for example a specific element concentration within minerals and rocks or "
"the order of units within a complete lithological profile.",
keywords=["geophysics, geochemistry, mineralogy, petrology, seismology, stratigraphy, geology, geosciences"],
install_requires=["numpy", "scipy", "pandas", "matplotlib"],
entry_points={"console_scripts": ["gebpy = gebpy.gebpy_app:gebpy"]},
include_package_data=True,
package_data={"": ["lib/images/*.png"]},
long_description=description,
long_description_content_type="text/markdown",
)