-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (62 loc) · 1.99 KB
/
setup.py
File metadata and controls
64 lines (62 loc) · 1.99 KB
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
59
60
61
62
63
64
from setuptools import setup
with open("README.md", "r") as fh:
readme = fh.read()
setup(
name="iso2mesh",
packages=["iso2mesh"],
version="0.5.5",
license="GPLv3+",
description="One-liner 3D Surface and Tetrahedral Mesh Generation Toolbox",
long_description=readme,
long_description_content_type="text/markdown",
author="Qianqian Fang",
author_email="fangqq@gmail.com",
maintainer="Qianqian Fang",
url="https://github.com/NeuroJSON/pyiso2mesh",
keywords=[
"Iso2Mesh",
"Brain2Mesh",
"JSONLab",
"EasyH5",
"Mesh generation",
"Finite element method",
"FEM",
"FEA",
"MATLAB",
"Mesh-based Monte Carlo",
"CGAL",
"Tetgen",
"CSG",
"Boolean",
"Surface mesh",
"Tetrahedral mesh",
"Modeling",
"Multiphysics",
"Image processing",
"NeuroJSON",
"Binary JSON",
"JSON",
"Data format",
],
platforms="any",
install_requires=["numpy>=1.8.0,<3.0.0", "matplotlib", "jdata>=0.8.2", "bjdata"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)