-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
24 lines (23 loc) · 1011 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='petrodc',
packages=['petrodc', 'petrodc.npd', 'petrodc.usgs_eros', 'petrodc.ags'],
version='0.1.10',
license='LGPL v3',
description='Petroleum Data Collector',
long_description=long_description,
long_description_content_type="text/markdown",
author='Juan Camilo Gonzalez Angarita',
author_email='juan@prowellplan.com',
keywords='petroleum data collector operations wellbore oil gas',
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=['pandas', 'requests', 'numpy', 'plotly', 'lasio']
)