-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (29 loc) · 1.09 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
26
27
28
29
30
import pathlib
import setuptools
setuptools.setup(
name="stresslog",
version="1.5.0",
description="Library for stress calculations from well logs",
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://www.rocklab.in/stresslog",
author="Arkadeep Ghosh",
author_email="arkadeep_ghosh@rocklab.in",
license="AGPL-3.0",
project_urls={
"Documentation":"https://stresslog.readthedocs.io/en/stable/",
"Source":"https://github.com/GeoArkadeep/Stresslog"
},
classifiers=[
"Development Status :: 6 - Mature",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.10,<3.12",
install_requires=["pandas>=2.0","numpy","scipy","welly","pint","matplotlib", "plotly"],
packages=setuptools.find_packages(),
include_package_data=True,
)