forked from Zabamund/wellpathpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 683 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python3
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name='wellpathpy',
description='Light package to load well deviations',
long_description=long_description,
author='Robert Leckenby, Brendon Hall, Jørgen Kvalsvik',
author_email='fracgeol@gmail.com',
url='https://github.com/Zabamund/wellpathpy',
packages=['wellpathpy'],
license='LGPL-3.0',
platforms='any',
install_requires=['numpy >=1.10'],
setup_requires=['setuptools >=28', 'setuptools_scm', 'pytest-runner'],
tests_require=['pytest', 'hypothesis'],
use_scm_version=True,
)