forked from MiraGeoscience/geoh5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (77 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
README = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "package.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
README = stream.read().decode("utf8")
setup(
long_description=README,
name="geoh5py",
version="0.2.0-alpha",
description="Python API for geoh5, an open file format for geoscientific data",
python_requires="==3.*,>=3.7.0",
project_urls={
"documentation": "https://geoh5py.readthedocs.io/en/latest/",
"homepage": "https://mirageoscience.com",
"repository": "https://github.com/MiraGeoscience/geoh5py",
},
author="Mira Geoscience",
author_email="[email protected]",
license="LGPL-3.0-or-later",
keywords="geology geophysics data interoperability",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={"console_scripts": ["publish = devtools.publish:publish"]},
packages=[
"geoh5py",
"geoh5py.data",
"geoh5py.groups",
"geoh5py.handlers",
"geoh5py.interfaces",
"geoh5py.io",
"geoh5py.objects",
"geoh5py.shared",
"geoh5py.workspace",
],
package_dir={"": "."},
package_data={
"geoh5py.interfaces": ["*.pyi"],
"geoh5py.io": ["*.orig"],
"geoh5py.objects": ["*.orig"],
},
install_requires=["h5py==3.*,>=3.2.1", "numpy!=1.19.4"],
dependency_links=[
"git+https://github.com/MiraGeoscience/poetry-publish.git@pending_fixes#egg=poetry-publish"
],
extras_require={
"dev": [
"lockfile==0.*,>=0.12.2",
"poetry-publish",
"pylint==2.*,>=2.3.0",
"pytest==3.*,>=3.0.0",
"pytest-cov==2.*,>=2.7.1",
"scipy==1.*,>=1.4.1",
"sphinx==3.*,>=3.0.0",
"sphinx-autodoc-typehints==1.*,>=1.10.0",
"sphinx-rtd-theme==0.*,>=0.4.3",
"toml==0.*,>=0.10.2",
]
},
)