Skip to content

Commit

Permalink
sorting package issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Reed Es committed Nov 18, 2021
1 parent b4a6065 commit a6890ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ let package = Package(
.executable(name: "finport", targets: ["FINporterCLI"]),
],
dependencies: [
//.package(name: "AllocData", url: "https://github.com/reedes/AllocData.git", .branch("main")),
.package(name: "AllocData", url: "https://github.com/openalloc/AllocData.git", from: "1.1.0"),
.package(name: "SwiftCSV", url: "https://github.com/openalloc/SwiftCSV.git", .upToNextMajor(from: "0.6.1")),
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMajor(from: "0.4.3")),
.package(url: "https://github.com/openalloc/AllocData.git", from: "1.1.0"),
.package(url: "https://github.com/openalloc/SwiftCSV.git", from: "0.6.1"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "0.4.3"),
],
targets: [
.target(
name: "FINporter",
dependencies: [
"AllocData", "SwiftCSV",
"AllocData",
"SwiftCSV",
],
path: "Sources"
),
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

<img align="right" src="https://github.com/openalloc/FINporter/blob/main/Images/logo.png" width="100" height="100"/>A utility for transforming financial data.

Available both as a `finport` command line executable and as a Swift library to be incorporated in other apps.
Available both as a `finport` command line executable and as an open source Swift library to be incorporated in other apps.

_FINporter_ is part of the [OpenAlloc](https://github.com/openalloc) family of open source Swift software tools.

Used by investing apps like [FlowAllocator](https://flowallocator.app/FlowAllocator/index.html) and [FlowWorth](https://flowallocator.app/FlowWorth/index.html).

Expand Down Expand Up @@ -186,10 +188,18 @@ SUBCOMMANDS:

If your favorite product (e.g., _FlowAllocator_) hasn't yet incorporated the latest FINporter library supporting your service, you can still transform exports using `finport`. See examples above.

## Applications using FINporter
## See Also

* [FlowAllocator](https://flowallocator.app/FlowAllocator/index.html) - portfolio rebalancing tool for macOS
Swift open-source libraries (by the same author):

* [AllocData](https://github.com/openalloc/AllocData) - standardized data formats for investing-focused apps and tools
* [SwiftCompactor](https://github.com/openalloc/SwiftCompactor) - formatters for the concise display of Numbers, Currency, and Time Intervals
* [SwiftSimpleTree](https://github.com/openalloc/SwiftSimpleTree) - a nested data structure that’s flexible and easy to use
* [SwiftRegressor](https://github.com/openalloc/SwiftRegressor) - a linear regression tool that’s flexible and easy to use

And commercial apps using this library (by the same author):

* [FlowAllocator](https://flowallocator.app/FlowAllocator/index.html) - portfolio rebalancing tool for macOS
* [FlowWorth](https://flowallocator.app/FlowWorth/index.html) - a new portfolio performance and valuation tracking tool for macOS

## License
Expand Down

0 comments on commit a6890ea

Please sign in to comment.