forked from MPIBGC-TEE/bgc_md2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·64 lines (58 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
# vim:set ff=unix expandtab ts=4 sw=4:
# This is the standard pyhon install script.
# Only if it does not work use the shell script ../install_bgc_md.sh in the folder above
# Keep the requirements.freeze clean and to a minimum.
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="bgc_md2",
version="0.1",
test_suite="example_package.tests", # http://pythonhosted.org/setuptools/setuptools.html#test
description="Model Database for Carbon Allocation",
long_description=readme(), # avoid duplication
author="Markus, Thomas, Holger, Veronika ",
author_email="[email protected]",
url="https://github.com/MPIBGC-TEE/bgc_md2",
packages=find_packages('src'), # find all packages (multifile modules) recursively
package_dir={'': 'src'},
# py_modules=['external_module'], # external_module.py is a module living outside this dir as an example how to iclude something not
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX :: Linux",
"Topic :: Education ",
],
# entry_points={
#'console_scripts': [
# 'render= bgc_md.reports:render_parse'
# ]
# },
install_requires=[
"CompartmentalSystems",
"testinfrastructure", # also on https://github.com/MPIBGC-TEE/testinfrastructure.githttps://github.com/MPIBGC-TEE/testinfrastructure.git
"concurrencytest"
# ,"requests"
# ,"mendeley "
# ,"PyYAML"
# ,"pandas"
,
"netCDF4"
# ,'sqlalchemy'
# ,'oslash'
# ,'pypandoc'
,
"sympy",
"xarray",
"networkx",
"pygraphviz",
"cf-units",
],
)