Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tidy up the DESCRIPTION file #76

Merged
merged 2 commits into from
Apr 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

13 changes: 11 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: villager
Title: A framework for running Agent Based Models
Title: A framework for designing and running Agent Based Models
Version: 1.0.0.0
Authors@R: c(
person(
Expand All @@ -19,8 +19,14 @@ Authors@R: c(
family = "Thomson",
role = c("aut"),
email = "zizroc@nceas.ucsb.edu"
),
person(
given = "Toni",
family = "Gonzalez",
role = c("aut"),
email = "tonigonzalez@ucsb.edu"
))
Description: Villager is an agent based modeling framework designed to fit the needs of scientists modeling populations.
Description: This is a package for creating and running Agent Based Models (ABM). It provides a set of base classes with core functionality to allow bootstrapped models. For more intensive modeling, the supplied classes can be extended to fit researcher needs.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Expand All @@ -43,4 +49,7 @@ Suggests:
knitr,
testthat,
rmarkdown
URL: https://github.com/zizroc/villager/
BugReports: https://github.com/zizroc/villager/issues/
VignetteBuilder: knitr

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# villager
[![Build Status](https://travis-ci.com/zizroc/villager.svg?branch=master)](https://travis-ci.com/zizroc/villager) [![Codecov test coverage](https://codecov.io/gh/zizroc/villager/branch/master/graph/badge.svg)](https://codecov.io/gh/zizroc/villager?branch=master)
[![Codecov test coverage](https://codecov.io/gh/zizroc/villager/branch/master/graph/badge.svg)](https://codecov.io/gh/zizroc/villager?branch=main)

villager is a framework for creating and running agent based models in R. It's purpose is to provide an extensible framework where modeling can be done in native R.

Expand Down