Skip to content

Commit

Permalink
Merge pull request #55 from xquiet/master
Browse files Browse the repository at this point in the history
setup.py improvements
  • Loading branch information
tobias47n9e committed Aug 15, 2015
2 parents 24c1ec4 + 8b98a5d commit 6ed9086
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from distutils.core import setup
from os import path

pjoin = path.join

setup(
name = "innstereo",
Expand All @@ -20,7 +23,7 @@
"Topic :: Scientific/Engineering",
],
packages = ["innstereo"],
scripts = ["bin/innstereo"],
scripts = [pjoin("bin","innstereo")],
install_requires = ["numpy >= 1.6.0",
"scipy >= 0.13",
"matplotlib >= 1.4.0",
Expand All @@ -29,15 +32,15 @@
"scipy >= 0.13",
"matplotlib >= 1.4.0",
"mplstereonet >= 0.4"],
py_modules = ["__init__",
"dataview_classes",
"dialog_windows",
"file_parser",
"layer_types",
"layer_view",
"main_ui",
"plot_control",
"polar_axes"],
py_modules = [pjoin("innstereo","__init__"),
pjoin("innstereo","dataview_classes"),
pjoin("innstereo","dialog_windows"),
pjoin("innstereo","file_parser"),
pjoin("innstereo","layer_types"),
pjoin("innstereo","layer_view"),
pjoin("innstereo","main_ui"),
pjoin("innstereo","plot_control"),
pjoin("innstereo","polar_axes")],
package_data = {"ibk_st": ["calculate_bestfit_points.svg",
"calculate_eigenvector.svg",
"calculate_plane_intersect.svg",
Expand All @@ -49,7 +52,7 @@
"create_small_circle.svg",
"logo_about.svg",
"gui_layout.glade"]},
tests_require = "pytest"
tests_require = "pytest",
long_description = """
Innstereo (or Innsbruck Stereographic) is an open-source stereographic
projection program for structural geology and based on MPLStereonet. It can
Expand Down

0 comments on commit 6ed9086

Please sign in to comment.