-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 746 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 746 Bytes
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
"""For package installation.
References:
https://godatadriven.com/blog/a-practical-guide-to-using-setup-py/
"""
from setuptools import find_packages, setup
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
setup(
name="forest-ecoystem",
packages=find_packages(),
version='0.1.0',
description="Implmentation of"
" `Networks of forest ecosystems: Mathematical modeling of their"
" biotic pump mechanism and resilience to certain patch deforestation`",
long_description=readme(),
author="Jared Frazier, Dominique Weltevreden,"
" Eva Lampret, Marcel van de Lagemaat",
author_email="cscidev001@gmail.com",
license='MIT',
)