-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (55 loc) · 1.72 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
51
52
53
54
55
56
57
58
import codecs
from setuptools import setup, find_packages
import os
package_root = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(package_root, "FoldOptLib/version.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]
setup(
name="FoldOptLib",
install_requires=[
"loopstructural>=1.4.10",
"ipywidgets",
"mplstereonet",
"scipy>=1.11.3", # 1.11.3 is required to use vonmises_fisher() in scipy.stats
],
python_requires='>=3.9',
description="Open source Fold Geometry Optimisers for LoopStructural and Map2Loop",
long_description=codecs.open("README.md", "r", "utf-8").read(),
author="Rabii Chaarani",
author_email="[email protected]",
license=("MIT"),
url="https://github.com/Loop3D/FoldOptLib",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering",
],
version=version,
packages=find_packages(),
# ext_modules=
# ),
# include_dirs=[numpy.get_include()],
# include_package_data=True,
# package_data={
# "FoldOptLib": [
# ]
# },
keywords=[
"earth sciences",
"geology",
"3-D modelling",
"structural geology",
"uncertainty",
"fold geometry",
],
)