-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
25 lines (24 loc) · 989 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pwptemp',
packages=['pwptemp'],
version='0.3.6',
license='LGPL v3',
description='Well Temperature Distribution',
long_description=long_description,
long_description_content_type="text/markdown",
author='Pro Well Plan AS',
author_email='juan@prowellplan.com',
url='https://github.com/pro-well-plan/pwptemp',
keywords='well temperature distribution',
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
install_requires=['numpy', 'plotly', 'torque_drag', 'scipy', 'well_profile']
)