-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1.26 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
35
36
37
38
39
# -*- coding: utf-8 -*-
"""
Setup script for pygimli and python apps.
Usage:
python setup.py install --user # for local installation
sudo python setup.py install # for system-wide installation
python setup.py develop # for developers (creates symlinks to source)
"""
import os
from setuptools import setup, find_packages
#import versioneer
#apps = ["apps/" + app for app in os.listdir('apps') if not "template" in app]
try:
with open(os.path.join("README.rst")) as f:
long_description = f.read()
except:
long_description = "Geophysical Inversion and Modelling Library Core"
setup(name="pgcore",
############################################################################
# Do not edit next two lines, do "git tag v1.x.x; git push --tags" instead.
version="1.5.0",
# cmdclass=versioneer.get_cmdclass(),
############################################################################
description="Geophysical Inversion and Modelling Library C++ Core",
long_description=long_description,
author="Carsten Rücker, Thomas Günther, Florian Wagner",
author_email="[email protected]",
license="Apache 2.0",
url="https://www.pygimli.org",
packages=find_packages(),
package_data={'': ['*.so', '*.dll', '*.pyd']}
)