-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.27 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.27 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
long_description = """
Python connectivity for Itasca software.
This library implements a connection via sockets between Python and
the numerical modeling software from Itasca Consulting Group.
Functions are provided to read and write files in the Itasca FISH
binary format.
www.itascacg.com/software
FLAC, FLAC3D, PFC2D, PFC3D, UDEC & 3DEC
See https://github.com/jkfurtney/itasca-python for more information.
"""
from setuptools import setup
setup(
name = 'itasca',
packages = ['itasca'], # this must be the same as the name above
version = "2020.07.12",
description = "Python connectivity for Itasca software",
long_description = long_description,
author = 'Jason Furtney',
requires = ['numpy'],
author_email = 'jkfurtney@gmail.com',
url = "https://github.com/jkfurtney/itasca-python",
keywords = 'Itasca,FLAC,FLAC3D,PFC,UDEC,3DEC,PFC2D,PFC3D,FISH'.split(","),
license = "BSD",
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
"Intended Audience :: Science/Research"
],
)