-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (48 loc) · 1.45 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
43
44
45
46
47
48
49
50
import setuptools
try:
import pygimli as pg
except ImportError:
raise ImportError('You need to install pyGIMLi through conda first.')
try:
import pysurf96
except ImportError:
raise ImportError('You need to install pysurf96 (with fortran compiler) first.')
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyBEL1D",
version="1.0.1",
description="A Python implementation of the BEL1D codes",
long_description=long_description,
long_description_content_type="text/markdown",
author="MICHEL Hadrien",
author_email="[email protected]",
url="https://github.com/hadrienmichel/pyBEL1D",
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'matplotlib',
'scikit-learn',
'scipy',
'math',
'time',
'pathos',
'typing',
'pygimli',
'dill',
'functools',
'pysurf96'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering"
],
python_requiers="==3.7.7"
)