forked from pik-copan/pycopancore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 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
35
36
37
38
39
40
41
"""This is setup.py of pycopancore"""
# This file is part of pycopancore.
#
# Copyright (C) 2016-2017 by COPAN team at Potsdam Institute for Climate
# Impact Research
#
# URL: <http://www.pik-potsdam.de/copan/software>
# Contact: [email protected]
# License: BSD 2-clause license
from setuptools import setup, find_packages
# for developers: recommended way of installing is to run in this directory
# pip install -e .
# This creates a link insteaed of copying the files, so modifications in this directory are modifications in the installed package.
setup(name="pycopancore",
version="0.7.1-nexploit",
description="Reference implementation of the copan:CORE World-Earth modelling framework",
url="https://github.com/pik-copan/pycopancore",
author="COPAN team @ PIK",
author_email="",
license="BSD-2-Clause",
packages=find_packages(), #["pycopancore"],
install_requires=[
"numpy>=1.11.0",
"scipy>=0.17.0",
"sympy>=1.0",
"blist>=1.3.6",
"python-louvain>=0.9",
"profilehooks",
"pytest",
"pylama",
"pylint",
"pytest-cov>=2.5.1",
"pylama_pylint",
"numba",
],
zip_safe=False # see http://stackoverflow.com/questions/15869473/what-is-the-advantage-of-setting-zip-safe-to-true-when-packaging-a-python-projec
)