forked from itascaconsulting/itasca-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
39 lines (33 loc) · 1.21 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
import os
from setuptools import setup, find_packages
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.
www.itascacg.com/software
FLAC, FLAC3D, PFC2D, PFC3D, UDEC & 3DEC
See https://github.com/jkfurtney/itasca-python for more information.
"""
setup(
name = 'itasca',
version = __import__('itasca').get_version(),
url = "https://github.com/jkfurtney/itasca-python",
author = 'Jason Furtney',
author_email = 'jkfurtney@gmail.com',
description = "Python conectivity for Itasca software",
long_description = long_description,
keywords = 'Itasca FLAC FLAC3D PFC UDEC 3DEC',
license = "BSD",
tests_require = ['nose'],
install_requires = ['numpy >= 1.0.2'],
packages = find_packages(),
include_package_data = True,
classifiers = [
'Programming Language :: Python :: 2',
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
"Intended Audience :: Science/Research"
],
entry_points = { }
)