-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.36 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
import os
from setuptools import setup
# Advise from https://pythonhosted.org/an_example_pypi_project/setuptools.html
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pygeomod',
version='0.2.0',
description='Python wrappers for Geomodeller API and input files',
long_description=read('README.md'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
],
url='http://github.com/flohorovicic/pygeomod',
author='Florian Wellmann',
author_email='[email protected]',
license='MIT',
packages=['pygeomod'],
# package_dir = {'output' : 'pynoddy', 'history' : 'pynoddy'},
py_modules = ['pygeomod.geomodeller_xml_obj', 'pygeomod.geogrid'])