-
Notifications
You must be signed in to change notification settings - Fork 151
/
setup.py
63 lines (60 loc) · 2.08 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""Setup script for lasio"""
from setuptools import setup
import os
EXTRA_REQS = ("pandas", "chardet", "openpyxl")
TEST_REQS = (
"pytest>=3.6",
"pytest-cov",
"coverage",
"codecov",
"pytest-benchmark",
"black",
) + EXTRA_REQS
setup(
name="lasio",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Read/write well data from Log ASCII Standard (LAS) files",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/kinverarity1/lasio",
author="Kent Inverarity",
author_email="kinverarity@hotmail.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: System :: Filesystems",
"Topic :: Scientific/Engineering :: Information Analysis",
],
keywords="science geophysics io",
packages=("lasio",),
python_requires=">=3",
install_requires=("numpy",),
extras_require={"all": EXTRA_REQS, "test": (EXTRA_REQS, TEST_REQS)},
tests_require=(TEST_REQS),
entry_points={
"console_scripts": (
"las2excel = lasio.excel:main",
"las2excelbulk = lasio.excel:main_bulk",
"lasversionconvert = lasio.convert_version:convert_version",
"lasio = lasio:version",
)
},
)