-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (50 loc) · 2.23 KB
/
setup.py
File metadata and controls
56 lines (50 loc) · 2.23 KB
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
'''Setup script for lasio'''
from setuptools import setup
from os import path
from dasprodml import __version__
with open(path.join(path.dirname(__file__), "requirements.txt"), "r") as f:
requirements = f.read().splitlines()
setup(name='dasprodml',
version=__version__,
description="Read/write DAS data from PRODML files",
long_description=(
'This is a Python 3.5+ package to read and write PRODML '
'files, used for Distributed Accoustic Sensing (DAS) data. '
'It\'s an implementation of the energistics standard PRODML v2.0 '
'which may be found here: http://www.energistics.org/production/prodml-standards/current-standards '
'The standard is very new and can be complex to get up and running, so this library is meant to '
'be a help to be able to quickly read and write PRODML data and understand how the standard may be '
'used in a practical setting.\n\n'
'See https://github.com/bsdis/dasprodml for more details.'),
url="https://github.com/bsdis/dasprodml",
author="Bjørn Dissing and Yevgheni Petkevich",
author_email="bjorn.dissing@bitsort.io",
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Environment :: Other Environment",
"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.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: System :: Filesystems",
"Topic :: Scientific/Engineering :: Information Analysis",
],
keywords="science geophysics io",
packages=["dasprodml", ],
install_requires=requirements,
entry_points={
'console_scripts': [
],
}
)