-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (38 loc) · 1.37 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='PyGeoStudio',
version='0.4.4', # Required
description='Python library allowing reading/writing GeoStudio .gsz files',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MoiseRousseau/PyGeoStudio',
author='Moise Rousseau', # Optional
author_email='rousseau.moise@gmail.com',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='Geotechnics, Numerical Simulation, Hydrogeology, Optimization',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6, <4',
install_requires=[
'numpy',
'matplotlib',
'plyfile',
'bs4',
'lxml',
'prettytable',
],
project_urls={
'Bug Reports': 'https://github.com/MoiseRousseau/PyGeoStudio/issues',
'Source': 'https://github.com/MoiseRousseau/PyGeoStudio/',
'Documentation': 'https://pygeostudio.readthedocs.io/',
},
)