pydfnWorks
python wrapper for dfnWorks
release.py
Go to the documentation of this file.
1 
2 name = "pydfnWorks"
3 
4 date = "30 November 2020"
5 
6 version = "2.4.3"
7 
8 description = "This python package serves as a wrapper for dfnWorks"
9 
10 long_description = \
11  """
12 pydfnWorks is a a Python package interactively working with the
13 dfnWorks DFN simulate suite.
14 """
15 license = 'GPL'
16 
17 authors = {'Hyman': ('Jeffrey Hyman', 'jhyman@lanl.gov'),
18  'Livingston': ('Daniel Livingston', 'livingston@lanl.gov'),
19  'Gable': ('Carl Gable', 'gable@lanl.gov'),
20  'Karra': ('Satish Karra', 'satkarra@lanl.gov'),
21  'Makedonska': ('Nataliia Makedonska', 'nataliia@lanl.gov'),
22  'Sweeney': ('Matthew Sweeney', 'sweeney2796@lanl.gov')
23 }
24 
25 maintainer = "dfnWorks Developers"
26 
27 maintainer_email = "dfnworks@lanl.gov"
28 
29 url = 'http://dfnworks.lanl.gov'
30 
31 project_urls={
32  "Bug Tracker": "https://github.com/lanl/dfnWorks/issues",
33  "Documentation": "https://dfnworks.lanl.gov/index_docs.html",
34  "Source Code": "https://github.com/lanl/dfnWorks/tree/master/pydfnworks",
35  "Mailing List": "https://groups.google.com/d/forum/dfnworks-users",
36 }
37 
38 platforms = ['Linux', 'Mac OSX', 'Unix']
39 
40 keywords = ['Discrete Fracture Networks', 'Subsurface flow and Transport',
41  'Graph Theory', 'Mathematics','Fracture Networks', 'Simulations',
42  'Computational Geometry','network', 'graph', 'discrete mathematics',
43  'math']
44 
45 classifiers = [
46  'Development Status :: 5 - Production/Stable',
47  'Intended Audience :: Developers',
48  'Intended Audience :: Science/Research',
49  'License :: OSI Approved :: BSD License',
50  'Operating System :: OS Independent',
51  'Programming Language :: Python :: 3',
52  'Programming Language :: Python :: 3.6',
53  'Programming Language :: Python :: 3.7',
54  'Programming Language :: Python :: 3 :: Only',
55  'Topic :: Software Development :: Libraries :: Python Modules',
56  'Topic :: Scientific/Engineering :: Information Analysis',
57  'Topic :: Scientific/Engineering :: Mathematics',
58  'Topic :: Scientific/Engineering :: Physics']
59 
60 packages=["pydfnworks",
61  "pydfnworks.general",
62  "pydfnworks.dfnGen",
63  "pydfnworks.dfnGen.generation",
64  "pydfnworks.dfnGen.generation.output_report",
65  "pydfnworks.dfnGen.meshing",
66  "pydfnworks.dfnGen.meshing.udfm",
67  "pydfnworks.dfnGen.meshing.poisson_disc",
68  "pydfnworks.dfnGen.well_package",
69  "pydfnworks.dfnFlow",
70  "pydfnworks.dfnTrans",
71  "pydfnworks.dfnGraph"]
72 
73 install_requires=["numpy",
74  "scipy",
75  "h5py",
76  "pyvtk",
77  "fpdf",
78  "networkx>=2.4",
79  "mplstereonet",
80  "matplotlib<3.0"]