-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (43 loc) · 1.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
from pathlib import Path
from setuptools import setup
with Path(__file__).parent.joinpath("README.md").open() as f:
long_description = f.read()
setup(
name="tiledb-segy",
version="0.3.1",
description="Python library for fast access to seismic data using TileDB",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TileDB-Inc/TileDB-Segy",
author="George Sakkis",
author_email="[email protected]",
packages=["tiledb.segy"],
install_requires=[
"cached_property",
"segyio>=1.9.6",
"tiledb>=0.8.3",
"urlpath",
"wrapt",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-coverage", "pytest-xdist", "filelock"],
entry_points={"console_scripts": ["segy2tiledb=tiledb.segy.cli:main"]},
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)